From 774cab66e74f21426f3c1f0fd66973a1c89580b2 Mon Sep 17 00:00:00 2001 From: virgiliofornazin Date: Fri, 10 Nov 2017 18:38:24 -0200 Subject: [PATCH] fix string_view --- fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/format.h b/fmt/format.h index d49b04c9..1ce39492 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -1521,7 +1521,7 @@ class MakeValue : public Arg { #if FMT_HAS_STRING_VIEW FMT_MAKE_WSTR_VALUE(const std::wstring_view &, WSTRING) #endif -#if FMT_HAS_STRING_VIEW +#if FMT_HAS_EXPERIMENTAL_STRING_VIEW FMT_MAKE_WSTR_VALUE(const std::experimental::wstring_view &, WSTRING) #endif FMT_MAKE_WSTR_VALUE(WStringRef, WSTRING)