From 8dc69b9da925523fa7e4f8bd14ed2027a07c1cae Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 29 Aug 2018 19:18:08 -0700 Subject: [PATCH] Workaround a bug in Intellisense --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index dbcaad90..e55c3a02 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -24,7 +24,7 @@ # define FMT_HAS_FEATURE(x) 0 #endif -#if defined(__has_include) && \ +#if defined(__has_include) && !defined(__INTELLISENSE__) && \ (!defined(__INTEL_COMPILER) || __INTEL_COMPILER >= 1600) # define FMT_HAS_INCLUDE(x) __has_include(x) #else