mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: VC++ 2010 already supports ULL
--HG-- branch : develop
This commit is contained in:
parent
0623258189
commit
74196261ee
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ typedef uint16 ucchar;
|
||||||
|
|
||||||
// To define a 64bits constant; ie: UINT64_CONSTANT(0x123456781234)
|
// To define a 64bits constant; ie: UINT64_CONSTANT(0x123456781234)
|
||||||
#ifdef NL_COMP_VC
|
#ifdef NL_COMP_VC
|
||||||
# if (NL_COMP_VC_VERSION >= 120)
|
# if (NL_COMP_VC_VERSION >= 100)
|
||||||
# define INT64_CONSTANT(c) (c##LL)
|
# define INT64_CONSTANT(c) (c##LL)
|
||||||
# define SINT64_CONSTANT(c) (c##LL)
|
# define SINT64_CONSTANT(c) (c##LL)
|
||||||
# define UINT64_CONSTANT(c) (c##ULL)
|
# define UINT64_CONSTANT(c) (c##ULL)
|
||||||
|
|
Loading…
Reference in a new issue