Skip to content

Commit

Permalink
Fix ICX build (openPMD#1690)
Browse files Browse the repository at this point in the history
Error was:
 /home/runner/work/openPMD-api/openPMD-api/include/openPMD/backend/Container.hpp:262:32:
error: no member named 'm_container' in 'Container<T, T_key,
T_container>'
  262 |         container().swap(other.m_container);
  • Loading branch information
franzpoeschel authored Oct 29, 2024
1 parent 93df9d5 commit 7abdd7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/openPMD/backend/Container.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class Container : virtual public Attributable

void swap(Container &other)
{
container().swap(other.m_container);
container().swap(other.container());
}

mapped_type &at(key_type const &key)
Expand Down

0 comments on commit 7abdd7c

Please sign in to comment.