From d1de412c09d4f9dbe37e818f8b44578078ed49a7 Mon Sep 17 00:00:00 2001 From: Mark Harris Date: Wed, 2 Sep 2020 13:13:32 +1000 Subject: [PATCH] >=, not > --- 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 6a42eb92..8f1cbc17 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -227,7 +227,7 @@ // libc++ supports string_view in pre-c++17. #if (FMT_HAS_INCLUDE() && \ - (__cplusplus > 201703L || (__cplusplus > 201402L && defined(_LIBCPP_VERSION)))) || \ + (__cplusplus >= 201703L || (__cplusplus > 201402L && defined(_LIBCPP_VERSION)))) || \ (defined(_MSVC_LANG) && _MSVC_LANG > 201402L && _MSC_VER >= 1910) # include # define FMT_USE_STRING_VIEW