aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/logging.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-04-11 16:01:11 -0700
committerChris Robinson <[email protected]>2019-04-11 16:01:11 -0700
commit4b95d310aee4e6aa0485a6c637701bd2850c7968 (patch)
treef716c4d6d5808cfc5193953ec3f4ed7355164274 /Alc/logging.h
parent8215251571847c4a2e1f07338fdc1667a8b52809 (diff)
Remove the SZFMT macro
C++11 mandates the %zu/d formatter
Diffstat (limited to 'Alc/logging.h')
-rw-r--r--Alc/logging.h8
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