Skip to content

Commit

Permalink
Fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Jul 11, 2024
1 parent 20d573f commit 81e9efa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Series.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1822,9 +1822,9 @@ void Series::readOneIterationFileBased(std::string const &filePath)
{},
"Unknown iterationEncoding: " + encoding);
auto old_written = written();
written() = false;
setWritten(false, Attributable::EnqueueAsynchronously::No);
setIterationEncoding(encoding_out);
written() = old_written;
setWritten(old_written, Attributable::EnqueueAsynchronously::Yes);
}
else
throw std::runtime_error(
Expand Down

0 comments on commit 81e9efa

Please sign in to comment.