Commit b3ff862a by Niels

Merge pull request #121 from ColinH/master

Fix small oversight.
parents 83d068c3 c6c37d00
...@@ -1658,8 +1658,8 @@ class basic_json ...@@ -1658,8 +1658,8 @@ class basic_json
) )
{ {
using std::swap; using std::swap;
std::swap(m_type, other.m_type); swap(m_type, other.m_type);
std::swap(m_value, other.m_value); swap(m_value, other.m_value);
return *this; return *this;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment