From a4a67d28418f6f2084da92795bf692077f70a85b Mon Sep 17 00:00:00 2001 From: Christian Zimmermann Date: Sat, 19 Oct 2024 22:23:39 -0700 Subject: [PATCH] index pack: fix --- src/include/ranges/index_pack.cc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/ranges/index_pack.cc.h b/src/include/ranges/index_pack.cc.h index c8be6aa..8d2b19e 100644 --- a/src/include/ranges/index_pack.cc.h +++ b/src/include/ranges/index_pack.cc.h @@ -68,7 +68,7 @@ namespace CNORXZ template constexpr decltype(auto) SPack::mul(const SPack& p) const { - return SPack( std::tuple_cat(mIs, all()) ); + return SPack( std::tuple_cat(mIs, p.all()) ); } template