Add parentheses around std::min so it bypasses the macro introduced by windows.h.
This commit is contained in:
parent
1fbb82de89
commit
04a1666ef2
1 changed files with 1 additions and 1 deletions
|
@ -8987,7 +8987,7 @@ class basic_json
|
||||||
{
|
{
|
||||||
// avoid reading too many characters
|
// avoid reading too many characters
|
||||||
const size_t max_length = static_cast<size_t>(limit - start);
|
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:
|
private:
|
||||||
|
|
Loading…
Reference in a new issue