@@ -641,11 +641,11 @@ namespace udb {
641
641
constexpr _Bits<constmax<N, M>::value, Signed && _Signed> operator op ( \
642
642
const _Bits<M, _Signed> &o) const { \
643
643
if constexpr (M > N) { \
644
- return _Bits < constmax<N, M>::value, \
645
- Signed && _Signed > { _Bits<M, Signed>{get ()}.get () op o.get ()}; \
644
+ return _Bits< constmax<N, M>::value, Signed && _Signed>{ \
645
+ _Bits<M, Signed>{get ()}.get () op o.get ()}; \
646
646
} else { \
647
- return _Bits < constmax<N, M>::value, \
648
- Signed && _Signed > { get () op _Bits<N, _Signed>{o.get ()}.get ()}; \
647
+ return _Bits< constmax<N, M>::value, Signed && _Signed>{ \
648
+ get () op _Bits<N, _Signed>{o.get ()}.get ()}; \
649
649
} \
650
650
} \
651
651
\
@@ -1135,8 +1135,8 @@ struct fmt::formatter<udb::_Bits<N, Signed>> {
1135
1135
}
1136
1136
1137
1137
template <class FormatContext >
1138
- auto format (const udb::_Bits<N, Signed> &c,
1139
- FormatContext &ctx) -> decltype (ctx.out ()) {
1138
+ auto format (const udb::_Bits<N, Signed> &c, FormatContext &ctx)
1139
+ -> decltype (ctx.out ()) {
1140
1140
fmt::detail::handle_dynamic_spec<fmt::detail::precision_checker>(
1141
1141
specs_.width , specs_.width_ref , ctx);
1142
1142
int base = 10 ;
0 commit comments