Fixed: Build on Mac OS X, "id" is a datatype in objective-c(++)

hg/feature/gsoc2012-fabien
rti 13 years ago
parent fade75eba6
commit 63191bb27d

@ -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…
Cancel
Save