mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 17:59:03 +00:00
Fixed: Build on Mac OS X, "id" is a datatype in objective-c(++)
This commit is contained in:
parent
0bd338afd1
commit
354467e382
1 changed files with 6 additions and 6 deletions
|
@ -470,12 +470,12 @@ public:
|
||||||
/// return a string in form "(a:b:c:d)" where a,b,c,d are components of entity id.
|
/// return a string in form "(a:b:c:d)" where a,b,c,d are components of entity id.
|
||||||
std::string toString() const
|
std::string toString() const
|
||||||
{
|
{
|
||||||
std::string id;
|
std::string ident;
|
||||||
id.reserve(25);
|
ident.reserve(25);
|
||||||
id+='(';
|
ident+='(';
|
||||||
getDebugString (id);
|
getDebugString (ident);
|
||||||
id+=')';
|
ident+=')';
|
||||||
return id;
|
return ident;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Read from a debug string, use the same format as toString() (id:type:creator:dynamic) in hexadecimal
|
/// Read from a debug string, use the same format as toString() (id:type:creator:dynamic) in hexadecimal
|
||||||
|
|
Loading…
Reference in a new issue