Skip to content

Commit

Permalink
Fix a clang-format report
Browse files Browse the repository at this point in the history
  • Loading branch information
rherilier committed Sep 29, 2024
1 parent 39b525c commit f509f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tao/json/basic_value.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ namespace tao::json
return v;
}

basic_value& operator=( basic_value v ) noexcept( std::is_nothrow_move_assignable_v< variant_t > && std::is_nothrow_move_assignable_v< public_base_t > )
basic_value& operator=( basic_value v ) noexcept( std::is_nothrow_move_assignable_v< variant_t >&& std::is_nothrow_move_assignable_v< public_base_t > )
{
m_variant = std::move( v.m_variant );
public_base_t::operator=( static_cast< public_base_t&& >( v ) );
Expand Down

0 comments on commit f509f08

Please sign in to comment.