Skip to content

Commit

Permalink
Merge pull request #465 from MonkeybreadSoftware/patch-13
Browse files Browse the repository at this point in the history
Update json_object.hpp
  • Loading branch information
danielaparker authored Oct 16, 2023
2 parents 5166bc3 + 47f5962 commit c0bf17f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/jsoncons/json_object.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ namespace jsoncons {
}

template <class T>
void value(T&& value)
void value(T&& newValue)
{
value_ = std::forward<T>(value);
value_ = std::forward<T>(newValue);
}

void swap(key_value& member) noexcept
Expand Down

0 comments on commit c0bf17f

Please sign in to comment.