From 89c3bc585c7a5674cc75a628de2266632f0027f2 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Thu, 6 Jul 2017 17:36:56 -0400 Subject: [PATCH] Remove warning C4668 in MSVC for FMT_GCC_VERSION and FMT_HAS_GXX_CXX11 --- fmt/format.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fmt/format.h b/fmt/format.h index 1b727965..4122495d 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -99,7 +99,9 @@ typedef __int64 intmax_t; # define FMT_HAS_GXX_CXX11 1 # endif #else +# define FMT_GCC_VERSION 0 # define FMT_GCC_EXTENSION +# define FMT_HAS_GXX_CXX11 0 #endif #if defined(__INTEL_COMPILER)