From 9937b4c7e718537df37f8cba07e51ad629bbf178 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20Dai=C3=9F?= Date: Fri, 14 Mar 2025 22:16:58 +0100 Subject: [PATCH] Remove const from number slices Needs to be modified during moves --- .../detail/aggregation_executors_and_allocators.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cppuddle/kernel_aggregation/detail/aggregation_executors_and_allocators.hpp b/include/cppuddle/kernel_aggregation/detail/aggregation_executors_and_allocators.hpp index 93bd6dd4..2cd151d6 100644 --- a/include/cppuddle/kernel_aggregation/detail/aggregation_executors_and_allocators.hpp +++ b/include/cppuddle/kernel_aggregation/detail/aggregation_executors_and_allocators.hpp @@ -431,7 +431,7 @@ template class aggregated_executor { public: /// How many slices are there overall - required to check the launch /// criteria - const size_t number_slices; + size_t number_slices; size_t max_slices; size_t id; using executor_t = Executor;