Suppress more signed/ unsigned mismatches during Evaluator calls on MSVC

This commit is contained in:
Phil Nash 2017-08-06 00:38:03 +01:00 committed by Martin Hořeňovský
parent b7bd52cc98
commit 180d9242f5
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4389) // '==' : signed/unsigned mismatch
#pragma warning(disable:4018) // more "signed/unsigned mismatch"
#pragma warning(disable:4312) // Converting int to T* using reinterpret_cast (issue on x64 platform)
#endif