You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, VS2017 does not support the SFINAE expression. This
means that it attempts to parse the `Index < sizeof...(Types)` as a
template parameter resulting in a parse failure. This normalises the
constraint to `0 < sizeof...(Types) - Index`
(`sizeof...(Types) - Index > 0`) which is then wrapped into a ternary to
explicitly convert it to a boolean. This repairs the builds on VS2017.
0 commit comments