Skip to content

Commit 9deb707

Browse files
Fix copy-pasta
1 parent 3d41600 commit 9deb707

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/tuple

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1354,9 +1354,9 @@ tuple_cat(_Tuple0&& __t0, _Tuples&&... __tpls) {
13541354
using _T0Indices _LIBCPP_NODEBUG = typename __make_tuple_indices<tuple_size<_T0>::value>::type;
13551355
using _TRetIndices _LIBCPP_NODEBUG = typename __make_tuple_indices<tuple_size<_TRet>::value>::type;
13561356
return std::__tuple_cat_select_element_wise<_TRet>(
1357-
__tuple_cat<tuple<>, __tuple_indices<>, _T0Indice>()(
1357+
__tuple_cat<tuple<>, __tuple_indices<>, _T0Indices>()(
13581358
tuple<>(), std::forward<_Tuple0>(__t0), std::forward<_Tuples>(__tpls)...),
1359-
_TRetIndice());
1359+
_TRetIndices());
13601360
}
13611361

13621362
template <class... _Tp, class _Alloc>

0 commit comments

Comments
 (0)