Fix small oversight.
This commit is contained in:
parent
0a81353989
commit
c6c37d00d1
1 changed files with 2 additions and 2 deletions
|
@ -1658,8 +1658,8 @@ class basic_json
|
|||
)
|
||||
{
|
||||
using std::swap;
|
||||
std::swap(m_type, other.m_type);
|
||||
std::swap(m_value, other.m_value);
|
||||
swap(m_type, other.m_type);
|
||||
swap(m_value, other.m_value);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue