소스 검색

Merge pull request #2067 from rextimmy/vs2017_3_fix

Support for VS 15.3 update
Areloch 8 년 전
부모
커밋
21552a06dd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Engine/source/console/engineFunctions.h

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

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