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

🏁 fix for #581

This commit is contained in:
Niels Lohmann
2017-05-13 12:27:37 +02:00
parent 978255da8c
commit 9b764ee5d6

View File

@ -9005,7 +9005,7 @@ class basic_json
{
// avoid reading too many characters
const size_t max_length = static_cast<size_t>(limit - start);
return std::string(start + offset, std::min({length, max_length - offset}));
return std::string(start + offset, std::min(length, max_length - offset));
}
private: