Skip to content

Commit

Permalink
Merge pull request #33 from diehlpk/master
Browse files Browse the repository at this point in the history
Update aggregation_executors_and_allocators.hpp to compile with gcc 14
  • Loading branch information
G-071 authored Jun 1, 2024
2 parents 22bccbe + 3a0f2cf commit 78b178f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ class allocator_slice;
template <typename Executor> class aggregated_executor {
private:
//===============================================================================
// Misc private avariables:
// Misc private variables:
//
std::atomic<bool> slices_exhausted;
Expand Down Expand Up @@ -432,8 +432,8 @@ template <typename Executor> class aggregated_executor {
/// How many slices are there overall - required to check the launch
/// criteria
const size_t number_slices;
const size_t max_slices;
const size_t id;
size_t max_slices;
size_t id;
using executor_t = Executor;
executor_slice(aggregated_executor &parent, const size_t slice_id,
const size_t number_slices, const size_t max_number_slices)
Expand Down

0 comments on commit 78b178f

Please sign in to comment.