From 6bd7140ae38abc873c6ffc23815b62b5e67a3c4d Mon Sep 17 00:00:00 2001 From: Christian Zimmermann Date: Wed, 11 Jan 2023 17:36:24 +0100 Subject: [PATCH] fix pipeline... --- 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 104aee3..854d995 100644 --- a/src/include/ranges/index_pack.cc.h +++ b/src/include/ranges/index_pack.cc.h @@ -105,7 +105,7 @@ namespace CNORXZ DPack::DPack(const SPack& p) : mIs( iter<0,sizeof...(Indices)> ( [&](auto i) { return xindexPtr(p[i]); }, - [](const auto&... e) { return { e... }; } ) + [](const auto&... e) { return Vector( { e... } ); } ) ) {}