from @rextimmy: clamps the vc workaround now that later versions fixed that bug

This commit is contained in:
AzaezelX 2019-10-29 06:57:13 -05:00
parent cba14c035f
commit 8cb018fb44

View file

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