Browse Source

#if cleanup for the VS2017 workaround

Areloch 8 years ago
parent
commit
0946950fa0
1 changed files with 1 additions and 1 deletions
  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;
    }
    
-#ifdef _MSC_VER == 1910
+#if _MSC_VER == 1910
    template<typename ...TailTs>
    struct DodgyVCHelper
    {