diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-03-12 18:34:50 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-03-12 18:34:50 +0100 |
commit | 862e2194433b5d47aaf88261091b35a1ee663482 (patch) | |
tree | 0193a728a38fd760b40d186d45c283ac2685e7ea /src/Globals.h | |
parent | Merge branch 'Werror' into warnings (diff) | |
download | cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.gz cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.bz2 cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.lz cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.xz cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.zst cuberite-862e2194433b5d47aaf88261091b35a1ee663482.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Globals.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Globals.h b/src/Globals.h index faa168c59..08d9e971a 100644 --- a/src/Globals.h +++ b/src/Globals.h @@ -43,6 +43,8 @@ // MSVC has its own custom version of zu format #define SIZE_T_FMT "%Iu" + #define SIZE_T_FMT_PRECISION(x) "%" #x "Iu" + #define SIZE_T_FMT_HEX "%Ix" #elif defined(__GNUC__) @@ -65,6 +67,8 @@ #define FORMATSTRING(formatIndex,va_argsIndex) __attribute__((format (printf, formatIndex, va_argsIndex))) #define SIZE_T_FMT "%zu" + #define SIZE_T_FMT_PRECISION(x) "%" #x "zu" + #define SIZE_T_FMT_HEX "%zx" #else |