Fix warnings on C++98

(cherry picked from commit cfd00af37a)
This commit is contained in:
Victor Zverovich
2016-11-06 12:58:49 -08:00
committed by Jonathan Müller
parent 4a24a38861
commit ba0c3b957f

View File

@ -261,7 +261,7 @@ typedef __int64 intmax_t;
// For GCC according to cppreference.com they were introduced in 3.3. // For GCC according to cppreference.com they were introduced in 3.3.
# define FMT_USE_EXTERN_TEMPLATES \ # define FMT_USE_EXTERN_TEMPLATES \
((__clang__ && FMT_USE_VARIADIC_TEMPLATES) || \ ((__clang__ && FMT_USE_VARIADIC_TEMPLATES) || \
FMT_GCC_VERSION >= 303) (FMT_GCC_VERSION >= 303 && FMT_HAS_GXX_CXX11))
#endif #endif
#ifdef FMT_HEADER_ONLY #ifdef FMT_HEADER_ONLY