From 9b2ae5ec24ae4d1743328131edbee3eb3e9a8559 Mon Sep 17 00:00:00 2001 From: Barry Revzin Date: Mon, 19 Jun 2023 13:55:58 -0500 Subject: [PATCH] Something something msvc. --- 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 5fe659ff..46354241 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1551,7 +1551,7 @@ FMT_CONSTEXPR FMT_INLINE auto make_arg(T& val) -> value { constexpr bool formattable_char = !std::is_same::value; #if defined(__cpp_if_constexpr) - if constexpr (not formattable_char) { + if constexpr (!formattable_char) { type_is_unformattable_for _; } #endif