Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (*pedantry alert*) Right-shifting a 32-bit value by 32 is, strictly, undefined behavior, although every compiler worth its salt will understand that this is just a funny way to generate 0. But anyways, this code causes VC++ to emit warning C4293, which, per Office policy, may not be disabled. * Fix C4244 warnings in MethodCall.cpp when compiling for x86, caused by implicitly truncating `int64_t` values to `int` values.
- Loading branch information