From 8cb018fb44a28852ed6b9d77dec614a06e694b33 Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Tue, 29 Oct 2019 06:57:13 -0500 Subject: [PATCH] from @rextimmy: clamps the vc workaround now that later versions fixed that bug --- Engine/source/console/engineFunctions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/console/engineFunctions.h b/Engine/source/console/engineFunctions.h index eb935d995..8f2d600fe 100644 --- a/Engine/source/console/engineFunctions.h +++ b/Engine/source/console/engineFunctions.h @@ -113,7 +113,7 @@ private: std::tie(std::get(args)...) = defaultArgs; } -#if defined(_MSC_VER) && (_MSC_VER >= 1910) +#if defined(_MSC_VER) && (_MSC_VER >= 1910) && (_MSC_VER < 1920) template struct DodgyVCHelper {