Merge pull request #2067 from rextimmy/vs2017_3_fix

Support for VS 15.3 update
This commit is contained in:
Areloch 2017-08-15 08:32:22 -05:00 committed by GitHub
commit 21552a06dd

View file

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