We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d41600 commit 9deb707Copy full SHA for 9deb707
libcxx/include/tuple
@@ -1354,9 +1354,9 @@ tuple_cat(_Tuple0&& __t0, _Tuples&&... __tpls) {
1354
using _T0Indices _LIBCPP_NODEBUG = typename __make_tuple_indices<tuple_size<_T0>::value>::type;
1355
using _TRetIndices _LIBCPP_NODEBUG = typename __make_tuple_indices<tuple_size<_TRet>::value>::type;
1356
return std::__tuple_cat_select_element_wise<_TRet>(
1357
- __tuple_cat<tuple<>, __tuple_indices<>, _T0Indice>()(
+ __tuple_cat<tuple<>, __tuple_indices<>, _T0Indices>()(
1358
tuple<>(), std::forward<_Tuple0>(__t0), std::forward<_Tuples>(__tpls)...),
1359
- _TRetIndice());
+ _TRetIndices());
1360
}
1361
1362
template <class... _Tp, class _Alloc>
0 commit comments