This commit is contained in:
Colin Hirsch 2015-08-29 09:41:54 +00:00
commit 3acb829773

View File

@ -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;
}