Cleanup string_view checks

This commit is contained in:
Victor Zverovich 2022-05-29 16:30:39 -07:00
parent c83a5d42bb
commit d6b568a6cc

View File

@ -238,9 +238,8 @@
#endif #endif
// libc++ supports string_view in pre-c++17. // libc++ supports string_view in pre-c++17.
#if (FMT_HAS_INCLUDE(<string_view>) && \ #if FMT_HAS_INCLUDE(<string_view>) && \
(__cplusplus > 201402L || defined(_LIBCPP_VERSION))) || \ (FMT_CPLUSPLUS >= 201703L || defined(_LIBCPP_VERSION))
(defined(_MSVC_LANG) && _MSVC_LANG > 201402L && _MSC_VER >= 1910)
# include <string_view> # include <string_view>
# define FMT_USE_STRING_VIEW # define FMT_USE_STRING_VIEW
#elif FMT_HAS_INCLUDE("experimental/string_view") && __cplusplus >= 201402L #elif FMT_HAS_INCLUDE("experimental/string_view") && __cplusplus >= 201402L