File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ namespace tao::json
156
156
return v;
157
157
}
158
158
159
- basic_value& operator =( basic_value v ) noexcept ( std::is_nothrow_move_assignable_v< variant_t > && std::is_nothrow_move_assignable_v< public_base_t > )
159
+ basic_value& operator =( basic_value v ) noexcept ( std::is_nothrow_move_assignable_v< variant_t >&& std::is_nothrow_move_assignable_v< public_base_t > )
160
160
{
161
161
m_variant = std::move ( v.m_variant );
162
162
public_base_t ::operator =( static_cast < public_base_t && >( v ) );
Original file line number Diff line number Diff line change @@ -234,8 +234,10 @@ namespace tao::json::test
234
234
}
235
235
{
236
236
// TODO: More numbers...
237
+ // clang-format off
237
238
}
238
239
{
240
+ // clang-format on
239
241
c.string ( " " );
240
242
c.element ();
241
243
}
You can’t perform that action at this time.
0 commit comments