From 4523ed7887f069e64a786875f3ab724d314a1994 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 9 Sep 2013 15:38:43 -0700 Subject: [PATCH] Disable -Wlong-long on gcc. --- format.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/format.h b/format.h index 1ca67ce8..f8075e11 100644 --- a/format.h +++ b/format.h @@ -55,6 +55,9 @@ # define FMT_NOEXCEPT(expr) #endif +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wlong-long" + namespace fmt { namespace internal { @@ -1165,4 +1168,6 @@ inline Formatter Print(StringRef format) { } } +#pragma GCC diagnostic pop + #endif // FORMAT_H_