From c6c37d00d1962257607138def2e788157e9e9969 Mon Sep 17 00:00:00 2001 From: Colin Hirsch Date: Sun, 20 Sep 2015 15:04:51 +0200 Subject: [PATCH] Fix small oversight. --- src/json.hpp.re2c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/json.hpp.re2c b/src/json.hpp.re2c index af8ef8b7f..250c57f0a 100644 --- a/src/json.hpp.re2c +++ b/src/json.hpp.re2c @@ -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; }