From 49a46f8d5034cc2d48c966734484674578d4f13b Mon Sep 17 00:00:00 2001 From: vsol Date: Sat, 14 Mar 2020 19:16:32 +0300 Subject: [PATCH] Removed conditional compilation as there's already the `internal::std_string_veiew` alias --- include/fmt/core.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index ac4d8292..34ff3405 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1637,16 +1637,8 @@ template struct is_string_view : std::false_type {}; template struct is_string_view, Char> : std::true_type {}; -#ifdef FMT_USE_STRING_VIEW template -struct is_string_view, Char> : std::true_type {}; -#endif - -#ifdef FMT_USE_EXPERIMENTAL_STRING_VIEW -template -struct is_string_view, Char> - : std::true_type {}; -#endif +struct is_string_view, Char> : std::true_type {}; template struct is_ref_wrapper : std::false_type {};