commit df301a252c9a512a3013ce3d1e1db036eab47f1e
parent 324a8a4bc35acf098d0bf38840f547558c447717
Author: [email protected] <[email protected]>
Date: Sat, 27 Jan 2024 08:37:31 +0000
Fix counter(T)
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/include/kfr/base/basic_expressions.hpp b/include/kfr/base/basic_expressions.hpp
@@ -100,8 +100,7 @@ struct expression_traits<expression_counter<T, Dims>> : expression_traits_defaul
constexpr static shape<dims> get_shape() { return shape<dims>(infinite_size); }
};
-template <typename T = int, typename Arg = T, typename... Args,
- typename Tout = std::common_type_t<T, Arg, Args...>>
+template <typename T = int, typename Tout = T>
KFR_INTRINSIC expression_counter<Tout, 1> counter(T start = 0)
{
return { static_cast<Tout>(std::move(start)), { static_cast<Tout>(1) } };