Browse Source
On msvc14, int literal '-2147483648' is invalid, because '2147483648' is unsigned type and cant't apply minus operator to unsigned type. To define the int literal correctly, use '-2147483647 - 1' formula that is also used to define INT_MIN in limits.h.0.15
kobake
8 years ago
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue