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_