Changed: #825 Remove all warning when compiling Ryzom

This commit is contained in:
kervala 2010-10-18 19:11:58 +02:00
parent fa39973ad2
commit de0731c04d
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ public:
: EntityNameStringId(0), : EntityNameStringId(0),
EntitySlot(-1), EntitySlot(-1),
ShardId(0), ShardId(0),
UId(~0), UId(std::numeric_limits<uint32>::max()),
Online(false) Online(false)
{ } { }

View file

@ -574,7 +574,7 @@ void CEntityIdTranslator::getEntityIdInfo (const CEntityId &eid, ucstring &entit
nlwarning ("EIT: %s is not registered in CEntityIdTranslator", reid.toString().c_str()); nlwarning ("EIT: %s is not registered in CEntityIdTranslator", reid.toString().c_str());
entityName = ""; entityName = "";
entitySlot = -1; entitySlot = -1;
uid = ~0; uid = std::numeric_limits<uint32>::max();
userName = ""; userName = "";
online = false; online = false;
} }