Something something msvc.

This commit is contained in:
Barry Revzin 2023-06-19 14:34:16 -05:00
parent 9b2ae5ec24
commit 422181fca8

View File

@ -1563,7 +1563,7 @@ FMT_CONSTEXPR FMT_INLINE auto make_arg(T& val) -> value<Context> {
constexpr bool formattable_pointer = constexpr bool formattable_pointer =
!std::is_same<arg_type, unformattable_pointer>::value; !std::is_same<arg_type, unformattable_pointer>::value;
#if defined(__cpp_if_constexpr) #if defined(__cpp_if_constexpr)
if constexpr (not formattable_pointer) { if constexpr (!formattable_pointer) {
type_is_unformattable_for<T, typename Context::char_type> _; type_is_unformattable_for<T, typename Context::char_type> _;
} }
#endif #endif
@ -1572,7 +1572,7 @@ FMT_CONSTEXPR FMT_INLINE auto make_arg(T& val) -> value<Context> {
constexpr bool formattable = !std::is_same<arg_type, unformattable>::value; constexpr bool formattable = !std::is_same<arg_type, unformattable>::value;
#if defined(__cpp_if_constexpr) #if defined(__cpp_if_constexpr)
if constexpr (not formattable) { if constexpr (!formattable) {
type_is_unformattable_for<T, typename Context::char_type> _; type_is_unformattable_for<T, typename Context::char_type> _;
} }
#endif #endif