ENH: fix for 64 bit cmake on mac
This commit is contained in:
parent
b7ed54c950
commit
8f4fb4ba2a
@ -69,6 +69,10 @@ cmXCodeObject::cmXCodeObject(PBXType ptype, Type type)
|
|||||||
this->Id += "0";
|
this->Id += "0";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(this->Id.size() > 24)
|
||||||
|
{
|
||||||
|
this->Id = this->Id.substr(0,24);
|
||||||
|
}
|
||||||
this->TypeValue = type;
|
this->TypeValue = type;
|
||||||
if(this->TypeValue == OBJECT)
|
if(this->TypeValue == OBJECT)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user