Skip to content

Commit

Permalink
Some bug fixes after recent PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Dec 17, 2024
1 parent 4c41a42 commit 3d1225f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/IO/ADIOS/ADIOS2IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ void ADIOS2IOHandlerImpl::openFile(
// lazy opening is deathly in parallel situations
auto &fileData = getFileData(**file, how_to_open);
*parameters.out_parsePreference = fileData.parsePreference;
m_dirty.emplace(std::move(file));
m_dirty.emplace(file);
}

void ADIOS2IOHandlerImpl::closeFile(
Expand Down
2 changes: 1 addition & 1 deletion src/IO/JSON/JSONIOHandlerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
#include "openPMD/IO/ADIOS/ADIOS2File.hpp"
#include "openPMD/IO/AbstractIOHandler.hpp"
#include "openPMD/IO/AbstractIOHandlerImpl.hpp"
#include "openPMD/ThrowError.hpp"
#include "openPMD/IO/IOTask.hpp"
#include "openPMD/IO/InvalidatableFile.hpp"
#include "openPMD/IO/JSON/JSONFilePosition.hpp"
#include "openPMD/ThrowError.hpp"
#include "openPMD/auxiliary/Filesystem.hpp"
#include "openPMD/auxiliary/JSON_internal.hpp"
#include "openPMD/auxiliary/Memory.hpp"
Expand Down

0 comments on commit 3d1225f

Please sign in to comment.