mirror of
https://github.com/nlohmann/json
synced 2024-12-02 08:20:11 +00:00
Merge branch 'develop' of https://github.com/nlohmann/json into develop
This commit is contained in:
commit
747f7d36d1
@ -8987,7 +8987,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:
|
||||
|
Loading…
Reference in New Issue
Block a user