From 7ecfbd701a764222548997e1de13a10f7e29b1f4 Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 30 Nov 2015 10:28:06 +0100 Subject: [PATCH] Fixed: VC++ 2010 already supports ULL --- code/nel/include/nel/misc/types_nl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/include/nel/misc/types_nl.h b/code/nel/include/nel/misc/types_nl.h index 3102238bd..9a7d7df76 100644 --- a/code/nel/include/nel/misc/types_nl.h +++ b/code/nel/include/nel/misc/types_nl.h @@ -463,7 +463,7 @@ typedef uint16 ucchar; // To define a 64bits constant; ie: UINT64_CONSTANT(0x123456781234) #ifdef NL_COMP_VC -# if (NL_COMP_VC_VERSION >= 120) +# if (NL_COMP_VC_VERSION >= 100) # define INT64_CONSTANT(c) (c##LL) # define SINT64_CONSTANT(c) (c##LL) # define UINT64_CONSTANT(c) (c##ULL)