msvc: bump required version to align with vs 17.5

This commit is contained in:
Shawn Hoffman 2023-02-22 13:15:17 -08:00
parent 69c335ca8c
commit 35bde3e7c8
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
#define STRINGIFY_HELPER(x) #x
#define STRINGIFY(x) STRINGIFY_HELPER(x)
#if defined _MSC_FULL_VER && _MSC_FULL_VER < 193431937
#if defined _MSC_FULL_VER && _MSC_FULL_VER < 193532215
#pragma message("Current _MSC_FULL_VER: " STRINGIFY(_MSC_FULL_VER))
#error Please update your build environment to the latest Visual Studio 2022!
#endif