Skip to content

Commit

Permalink
Late fix in tuple.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jfalcou committed Oct 22, 2022
1 parent bdc6cf9 commit 732898e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/kumi/tuple.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ namespace kumi
template<std::size_t I0, product_type Tuple>
requires(I0 <= size_v<Tuple>)
[[nodiscard]] constexpr auto split( Tuple const& t
, [[maybe_unsued]] index_t<I0> const& i0
, [[maybe_unused]] index_t<I0> const& i0
) noexcept
{
return kumi::make_tuple(extract(t,index<0>, index<I0>), extract(t,index<I0>));
Expand Down

0 comments on commit 732898e

Please sign in to comment.