From 97dfe771a1e074e2ca0bea254ab2196d65fb2a35 Mon Sep 17 00:00:00 2001 From: Konrad1991 Date: Mon, 3 Jun 2024 15:50:52 +0200 Subject: [PATCH] switch to ConstantTypeTrait --- include/etr_bits/Coca.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/etr_bits/Coca.hpp b/include/etr_bits/Coca.hpp index 9b72cbb..5159d0a 100644 --- a/include/etr_bits/Coca.hpp +++ b/include/etr_bits/Coca.hpp @@ -175,8 +175,7 @@ inline auto coca(AV &av, Args &&...args) { }, args...); - Vec, ConstantTypeTrait> ret( - av); // TODO: ConstantTypeTrait has to be added to all functions + Vec, ConstantTypeTrait> ret(av); return ret; }