Commit ba0c3b95 authored by Victor Zverovich's avatar Victor Zverovich Committed by Jonathan Müller

Fix warnings on C++98

(cherry picked from commit cfd00af3)
parent 4a24a388
......@@ -261,7 +261,7 @@ typedef __int64 intmax_t;
// For GCC according to cppreference.com they were introduced in 3.3.
# define FMT_USE_EXTERN_TEMPLATES \
((__clang__ && FMT_USE_VARIADIC_TEMPLATES) || \
FMT_GCC_VERSION >= 303)
(FMT_GCC_VERSION >= 303 && FMT_HAS_GXX_CXX11))
#endif
#ifdef FMT_HEADER_ONLY
......
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