Commit 4523ed78 authored by Victor Zverovich's avatar Victor Zverovich

Disable -Wlong-long on gcc.

parent e1a02c51
...@@ -55,6 +55,9 @@ ...@@ -55,6 +55,9 @@
# define FMT_NOEXCEPT(expr) # define FMT_NOEXCEPT(expr)
#endif #endif
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wlong-long"
namespace fmt { namespace fmt {
namespace internal { namespace internal {
...@@ -1165,4 +1168,6 @@ inline Formatter<Write> Print(StringRef format) { ...@@ -1165,4 +1168,6 @@ inline Formatter<Write> Print(StringRef format) {
} }
} }
#pragma GCC diagnostic pop
#endif // FORMAT_H_ #endif // FORMAT_H_
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment