From c719d94473fa97ce48213bb321b25437c7f5a661 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 13 Jan 2018 07:57:33 -0800 Subject: [PATCH] Fix experimental/string_view detection --- fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/format.h b/fmt/format.h index d4eeaa64..267ae6c2 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -63,7 +63,7 @@ # define FMT_HAS_EXPERIMENTAL_STRING_VIEW 0 #else # define FMT_HAS_STRING_VIEW 0 -# if (FMT_HAS_INCLUDE() && __cplusplus > 201402L) +# if (FMT_HAS_INCLUDE() && __cplusplus >= 201402L) # include # define FMT_HAS_EXPERIMENTAL_STRING_VIEW 1 # else