Skip to content

Commit b3ff862

Browse files
committed
Merge pull request #121 from ColinH/master
Fix small oversight.
2 parents 83d068c + c6c37d0 commit b3ff862

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/json.hpp.re2c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,8 +1658,8 @@ class basic_json
16581658
)
16591659
{
16601660
using std::swap;
1661-
std::swap(m_type, other.m_type);
1662-
std::swap(m_value, other.m_value);
1661+
swap(m_type, other.m_type);
1662+
swap(m_value, other.m_value);
16631663
return *this;
16641664
}
16651665

0 commit comments

Comments
 (0)