From 8efc8ac07584bcecf79241590dfdea26a29b60aa Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 6 Jan 2014 17:49:27 -0800 Subject: [PATCH] Fixed https://github.com/vitaut/format/issues/15 . Thanks! --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index 0ba896fc4b35..604fee716959 100644 --- a/format.h +++ b/format.h @@ -54,7 +54,7 @@ #ifndef FMT_USE_INITIALIZER_LIST # define FMT_USE_INITIALIZER_LIST \ (__has_feature(cxx_generalized_initializers) || \ - (FMT_GCC_VERSION >= 404 && __cplusplus >= 201103) || _MSC_VER >= 1700) + (FMT_GCC_VERSION >= 404 && __cplusplus >= 201103) || _MSC_VER >= 1800) #endif #if FMT_USE_INITIALIZER_LIST