From 7d3cec5106e04423586d33d037535fa08ebabed4 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Thu, 6 Jul 2017 17:35:31 -0400 Subject: [PATCH] Compile fix for Mac --- fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/format.h b/fmt/format.h index 27be274d..3d7400b1 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -120,7 +120,7 @@ typedef __int64 intmax_t; #endif // GLM defines __has_feature to '0' which causes MSVC to throw C4574 -#if defined(__has_feature) && __has_feature +#if (defined(__has_feature) && (__has_feature)) # define FMT_HAS_FEATURE(x) __has_feature(x) #else # define FMT_HAS_FEATURE(x) 0