mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Changed: #825 Remove all warnings when compiling Ryzom
This commit is contained in:
parent
dd4a3deb74
commit
69585a8421
1 changed files with 5 additions and 1 deletions
|
@ -283,7 +283,11 @@ typedef uint64_t uint64;
|
||||||
typedef int sint; // at least 32bits (depend of processor)
|
typedef int sint; // at least 32bits (depend of processor)
|
||||||
typedef unsigned int uint; // at least 32bits (depend of processor)
|
typedef unsigned int uint; // at least 32bits (depend of processor)
|
||||||
|
|
||||||
#define NL_I64 "ll"
|
#if __SIZEOF_LONG__ == 8
|
||||||
|
# define NL_I64 "l"
|
||||||
|
#else
|
||||||
|
# define NL_I64 "ll"
|
||||||
|
#endif // __SIZEOF_LONG__ == 8
|
||||||
|
|
||||||
#endif // NL_OS_UNIX
|
#endif // NL_OS_UNIX
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue