Merge pull request #2035 from Areloch/IF_Cleanup_2017fix

#if cleanup for the VS2017 workaround
This commit is contained in:
Areloch 2017-07-09 03:41:23 -05:00 committed by GitHub
commit c570f50bf3

View file

@ -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
{