Merge branch 'develop' of https://github.com/nlohmann/json into issue2286

 Conflicts:
	single_include/nlohmann/json.hpp
This commit is contained in:
Niels Lohmann 2020-07-23 12:30:07 +02:00
commit a33c3fdf25
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
21 changed files with 1886 additions and 1852 deletions

View file

@ -2334,7 +2334,7 @@ class binary_reader
success = false;
break;
}
result.push_back(std::char_traits<char_type>::to_char_type(current));
result.push_back(static_cast<typename string_t::value_type>(current));
};
return success;
}