1
0
mirror of https://github.com/nlohmann/json synced 2024-11-29 23:21:04 +00:00

Add parentheses around std::min so it bypasses the macro introduced by windows.h.

This commit is contained in:
Steffen Brem 2017-06-17 22:01:18 +02:00
parent 1fbb82de89
commit 04a1666ef2

View File

@ -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: