Selaa lähdekoodia

Merge pull request #2035 from Areloch/IF_Cleanup_2017fix

#if cleanup for the VS2017 workaround
Areloch 8 vuotta sitten
vanhempi
commit
c570f50bf3
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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
    {