1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-12 09:21:42 +03:00

fixed tests for copy assignment

This commit is contained in:
Niels
2015-02-10 17:40:47 +01:00
parent d760ff5142
commit 29a8d43d5a
3 changed files with 14 additions and 9 deletions

View File

@ -445,7 +445,6 @@ class basic_json
/// copy assignment
inline reference& operator=(basic_json other) noexcept
{
assert(false); // not sure if function will ever be called
std::swap(m_type, other.m_type);
std::swap(m_value, other.m_value);
return *this;