Merge branch 'master' of github.com:fmtlib/fmt

This commit is contained in:
Victor Zverovich 2021-06-27 08:10:49 -07:00
commit 0fc73a2a85

View File

@ -64,7 +64,8 @@
# define FMT_HAS_FEATURE(x) 0
#endif
#if defined(__has_include) && !defined(__INTELLISENSE__) && \
#if defined(__has_include) && \
(!defined(__INTELLISENSE__) || FMT_MSC_VER > 1900) && \
(!FMT_ICC_VERSION || FMT_ICC_VERSION >= 1600)
# define FMT_HAS_INCLUDE(x) __has_include(x)
#else