From 732898eca961efd72ae22e9ae6d7fd12c2eb0515 Mon Sep 17 00:00:00 2001 From: Joel Falcou Date: Sat, 22 Oct 2022 23:12:31 +0200 Subject: [PATCH] Late fix in tuple.hpp --- include/kumi/tuple.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kumi/tuple.hpp b/include/kumi/tuple.hpp index fc50452..6fa76b3 100644 --- a/include/kumi/tuple.hpp +++ b/include/kumi/tuple.hpp @@ -638,7 +638,7 @@ namespace kumi template requires(I0 <= size_v) [[nodiscard]] constexpr auto split( Tuple const& t - , [[maybe_unsued]] index_t const& i0 + , [[maybe_unused]] index_t const& i0 ) noexcept { return kumi::make_tuple(extract(t,index<0>, index), extract(t,index));