Changed: HAVE_X86_64 is defined or not

--HG--
branch : develop
hg/feature/material-editor
kervala 9 years ago
parent 51ec04b761
commit 9e8cd07e4b

@ -580,7 +580,7 @@ struct CEntityIdHashMapTraits
size_t operator() (const NLMISC::CEntityId &id ) const size_t operator() (const NLMISC::CEntityId &id ) const
{ {
uint64 hash64 = id.getUniqueId(); uint64 hash64 = id.getUniqueId();
#if (HAVE_X86_64) #ifdef HAVE_X86_64
return (size_t)hash64; return (size_t)hash64;
#else #else
return (size_t)hash64 ^ (size_t)(hash64 >> 32); return (size_t)hash64 ^ (size_t)(hash64 >> 32);

Loading…
Cancel
Save