Disable MSVC warning 4127 (conditional expression is constant) raised for so instances of narrow().

This commit is contained in:
Paweł Bylica 2016-02-19 19:14:39 +01:00
parent abae0bd998
commit c2924406e2

View File

@ -40,6 +40,7 @@
// turn off some misguided warnings
#pragma warning(push)
#pragma warning(disable: 4351) // warns about newly introduced aggregate initializer behavior
#pragma warning(disable: 4127) // conditional expression is constant
#endif // _MSC_VER <= 1800