From 35f72bf210157e283f9f84bfbd9636f42c18eb53 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 4 Jul 2022 09:10:55 -0700 Subject: [PATCH] Bump version --- include/fmt/core.h | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) 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() {}