Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update aggregation_executors_and_allocators.hpp to compile with gcc 14 #33

Merged
merged 2 commits into from
Jun 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading