diff options
author | Chris Robinson <[email protected]> | 2019-04-11 16:01:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-04-11 16:01:11 -0700 |
commit | 4b95d310aee4e6aa0485a6c637701bd2850c7968 (patch) | |
tree | f716c4d6d5808cfc5193953ec3f4ed7355164274 /Alc/logging.h | |
parent | 8215251571847c4a2e1f07338fdc1667a8b52809 (diff) |
Remove the SZFMT macro
C++11 mandates the %zu/d formatter
Diffstat (limited to 'Alc/logging.h')
-rw-r--r-- | Alc/logging.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Alc/logging.h b/Alc/logging.h index 6c2c1c94..e709bbf2 100644 --- a/Alc/logging.h +++ b/Alc/logging.h @@ -6,14 +6,6 @@ #include "opthelpers.h" -#if defined(_WIN64) -#define SZFMT "%I64u" -#elif defined(_WIN32) -#define SZFMT "%u" -#else -#define SZFMT "%zu" -#endif - #ifdef __GNUC__ #define DECL_FORMAT(x, y, z) __attribute__((format(x, (y), (z)))) #else |