msvc: bump _MSC_FULL_VER check to 192829335

This commit is contained in:
Shawn Hoffman 2021-01-09 19:21:03 -08:00
parent 0776263c5e
commit c8316f70a4
1 changed files with 1 additions and 1 deletions

View File

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