Failed to build with <Windows.h> #1531
Labels
kind: bug
platform: visual studio
related to MSVC
solution: proposed fix
a fix for the issue has been proposed and waits for confirmation
Milestone
Related to #1514
Failed to build if <Windows.h> is included:
Code:
assert(p2 <= std::numeric_limits<std::uint64_t>::max() / 10);
should be:
assert(p2 <= (std::numeric_limits<std::uint64_t>::max)() / 10);
The text was updated successfully, but these errors were encountered: