From 67df195b3556dfe6c56f9044d6ae1a7ac63408ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20P=C3=B6schel?= Date: Mon, 28 Oct 2024 15:16:23 +0100 Subject: [PATCH] Fix ICX build Error was: /home/runner/work/openPMD-api/openPMD-api/include/openPMD/backend/Container.hpp:262:32: error: no member named 'm_container' in 'Container' 262 | container().swap(other.m_container); --- include/openPMD/backend/Container.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openPMD/backend/Container.hpp b/include/openPMD/backend/Container.hpp index 58b07bd48a..cee50f9baf 100644 --- a/include/openPMD/backend/Container.hpp +++ b/include/openPMD/backend/Container.hpp @@ -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)