Commit b3ff862a authored by Niels's avatar Niels

Merge pull request #121 from ColinH/master

Fix small oversight.
parents 83d068c3 c6c37d00
......@@ -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;
}
......
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