Skip to content

Commit

Permalink
Unify struct/class
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Nov 17, 2023
1 parent 57907d4 commit d89e566
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/openPMD/IO/AbstractIOHandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ namespace internal

namespace detail
{
class BufferedActions;
struct BufferedActions;
}

/** Interface for communicating between logical and physically persistent data.
Expand All @@ -186,7 +186,7 @@ class AbstractIOHandler
{
friend class Series;
friend class ADIOS2IOHandlerImpl;
friend class detail::BufferedActions;
friend struct detail::BufferedActions;

private:
IterationEncoding m_encoding = IterationEncoding::groupBased;
Expand Down
2 changes: 1 addition & 1 deletion include/openPMD/backend/Writable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace internal
} // namespace internal
namespace detail
{
class BufferedActions;
struct BufferedActions;
}

/** @brief Layer to mirror structure of logical data and persistent data in
Expand Down

0 comments on commit d89e566

Please sign in to comment.