Skip to content

Commit 4786500

Browse files
authored
Merge pull request #39 from SC-SGS/fix_const
Remove const from number slices
2 parents 3035545 + 9937b4c commit 4786500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/cppuddle/kernel_aggregation/detail/aggregation_executors_and_allocators.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ template <typename Executor> class aggregated_executor {
431431
public:
432432
/// How many slices are there overall - required to check the launch
433433
/// criteria
434-
const size_t number_slices;
434+
size_t number_slices;
435435
size_t max_slices;
436436
size_t id;
437437
using executor_t = Executor;

0 commit comments

Comments
 (0)