>=, not >

This commit is contained in:
Mark Harris 2020-09-02 13:13:32 +10:00
parent 59010a4470
commit d1de412c09

View File

@ -227,7 +227,7 @@
// libc++ supports string_view in pre-c++17.
#if (FMT_HAS_INCLUDE(<string_view>) && \
(__cplusplus > 201703L || (__cplusplus > 201402L && defined(_LIBCPP_VERSION)))) || \
(__cplusplus >= 201703L || (__cplusplus > 201402L && defined(_LIBCPP_VERSION)))) || \
(defined(_MSVC_LANG) && _MSVC_LANG > 201402L && _MSC_VER >= 1910)
# include <string_view>
# define FMT_USE_STRING_VIEW