Skip to content

Commit

Permalink
fix(growt): compile errors with more recent gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSeemaier committed Oct 24, 2024
1 parent cb8284e commit 020906e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions external/growt/data-structures/migration_table_iterator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class migration_table_mapped_reference
_tab.execute(
[&](hash_ptr_reference t, this_type& sref) -> int {
base_refresh_ptr(t);
sref.ref.refresh();
sref._mref.refresh();
return 0;
},
*this);
Expand Down Expand Up @@ -96,7 +96,7 @@ class migration_table_mapped_reference
[](hash_ptr_reference t, this_type& sref, const mapped_type& value,
F f, Args&&... args) -> int {
sref.base_refresh_ptr(t);
sref.ref.update(f, std::forward<Args>(args)...);
sref._mref.update(f, std::forward<Args>(args)...);
return 0;
},
*this, value, f, std::forward<Args>(args)...);
Expand Down

0 comments on commit 020906e

Please sign in to comment.