Changed: HAVE_X86_64 is defined or not

--HG--
branch : develop
This commit is contained in:
kervala 2016-01-07 17:39:53 +01:00
parent 51ec04b761
commit 9e8cd07e4b

View file

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