diff --git a/include/fmt/core.h b/include/fmt/core.h index 0efb34e4..13d5d43c 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -210,7 +210,7 @@ #ifndef FMT_BEGIN_NAMESPACE # define FMT_BEGIN_NAMESPACE \ namespace fmt { \ - inline namespace v8 { + inline namespace v9 { # define FMT_END_NAMESPACE \ } \ } @@ -306,23 +306,17 @@ template using type_identity_t = typename type_identity::type; template using underlying_t = typename std::underlying_type::type; -template -struct disjunction : std::false_type {}; -template -struct disjunction

: P {}; +template struct disjunction : std::false_type {}; +template struct disjunction

: P {}; template -struct disjunction - : conditional_t> { -}; +struct disjunction + : conditional_t> {}; -template -struct conjunction : std::true_type {}; -template -struct conjunction

: P {}; +template struct conjunction : std::true_type {}; +template struct conjunction

: P {}; template struct conjunction - : conditional_t, P1> { -}; + : conditional_t, P1> {}; struct monostate { constexpr monostate() {}