From cb67af29e7fb760f2a521bd40ec5a3e0fb01b4d3 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Mon, 19 Oct 2015 15:23:53 -0700 Subject: [PATCH] Silence compiler warnings on Windows related to MinGWs inttypes.h --- src/util.h | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/util.h b/src/util.h index 3ef7331..f4b872c 100644 --- a/src/util.h +++ b/src/util.h @@ -61,6 +61,18 @@ static const int64_t CENT = 10000; void LogStackTrace(); #endif +#if defined(_MSC_VER) || defined(__MSVCRT__) + /* Silence compiler warnings on Windows + related to MinGWs inttypes.h */ + #undef PRIu64 + #undef PRId64 + #undef PRIx64 + + #define PRIu64 "I64u" + #define PRId64 "I64d" + #define PRIx64 "I64x" + +#endif /* Format characters for (s)size_t and ptrdiff_t */ #if defined(_MSC_VER) || defined(__MSVCRT__) -- 1.7.1