From f3031e2be2bc7184cb44399a27b5a0a54ff47f40 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sat, 14 Aug 2021 03:57:25 -0700 Subject: [PATCH] bump msvc required version to align wth vs 16.11 --- Source/PCH/pch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/PCH/pch.h b/Source/PCH/pch.h index 73bc48e713..976b6cfc56 100644 --- a/Source/PCH/pch.h +++ b/Source/PCH/pch.h @@ -6,7 +6,7 @@ #define STRINGIFY_HELPER(x) #x #define STRINGIFY(x) STRINGIFY_HELPER(x) -#if defined _MSC_FULL_VER && _MSC_FULL_VER < 192930037 +#if defined _MSC_FULL_VER && _MSC_FULL_VER < 192930133 #pragma message("Current _MSC_FULL_VER: " STRINGIFY(_MSC_FULL_VER)) #error Please update your build environment to the latest Visual Studio 2019! #endif