cpp17_in_TTs
cpp17_in_TTs copied to clipboard
structure binding typo
template< int N > struct tuple_element<N,foo>...
Should be
template<size_t N> struct tuple_element<N,foo>...
You are probably right, but in my world unsigneds are only used for bit twiddling, not numbers.