Browse Source

from @rextimmy: clamps the vc workaround now that later versions fixed that bug

AzaezelX 5 years ago
parent
commit
8cb018fb44
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/source/console/engineFunctions.h

+ 1 - 1
Engine/source/console/engineFunctions.h

@@ -113,7 +113,7 @@ private:
       std::tie(std::get<I + (sizeof...(ArgTs) - sizeof...(TailTs))>(args)...) = defaultArgs;
    }
    
-#if defined(_MSC_VER) && (_MSC_VER >= 1910)
+#if defined(_MSC_VER) && (_MSC_VER >= 1910) && (_MSC_VER < 1920)
    template<typename ...TailTs>
    struct DodgyVCHelper
    {