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

🐛 fix bug in binary constructor

This commit is contained in:
Niels Lohmann
2020-05-09 14:16:49 +02:00
parent 3fa94f0755
commit b036ace235
2 changed files with 2 additions and 4 deletions

View File

@ -17458,8 +17458,7 @@ class basic_json
case value_t::binary:
{
m_value.binary = create<internal_binary_t>(first.m_it.binary_iterator,
last.m_it.binary_iterator);
m_value = *first.m_object->m_value.binary;
break;
}