(MSVC 2015) Buildfix

This commit is contained in:
trioan 2020-04-29 22:59:20 +00:00
parent e14fc1b087
commit de0b34aa0a
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
#include "../verbosity.h"
#if defined(_MSC_VER) && !defined(_XBOX)
#if (_MSC_VER >= 1700 && _MSC_VER < 1910)
#if (_MSC_VER >= 1700 && _MSC_VER < 1900)
/* https://support.microsoft.com/en-us/kb/980263 */
#pragma execution_character_set("utf-8")
#endif

View File

@ -28,7 +28,7 @@
#include "../configuration.h"
#if defined(_MSC_VER) && !defined(_XBOX)
#if (_MSC_VER >= 1700 && _MSC_VER < 1910)
#if (_MSC_VER >= 1700 && _MSC_VER < 1900)
/* https://support.microsoft.com/en-us/kb/980263 */
#pragma execution_character_set("utf-8")
#endif