From 9e8cd07e4bd9eb71ec2ab511c247344988b36481 Mon Sep 17 00:00:00 2001 From: kervala Date: Thu, 7 Jan 2016 17:39:53 +0100 Subject: [PATCH] Changed: HAVE_X86_64 is defined or not --HG-- branch : develop --- code/nel/include/nel/misc/entity_id.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/include/nel/misc/entity_id.h b/code/nel/include/nel/misc/entity_id.h index 25c744f4e..0a3d51208 100644 --- a/code/nel/include/nel/misc/entity_id.h +++ b/code/nel/include/nel/misc/entity_id.h @@ -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);