Skip to content

Commit

Permalink
fix constructor of concurrent_bucket_map
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgottesbueren committed Sep 16, 2024
1 parent 1b7f34e commit 52d7aa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mt-kahypar/datastructures/concurrent_bucket_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class ConcurrentBucketMap {
_num_buckets(other._num_buckets),
_mod_mask(_num_buckets - 1),
_spin_locks(_num_buckets),
_buckets(std::move(other._buffer)) { }
_buckets(std::move(other._buckets)) { }

template<typename F>
void doParallelForAllBuckets(const F& f) {
Expand Down

0 comments on commit 52d7aa6

Please sign in to comment.