Skip to content

Commit

Permalink
Fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Mar 26, 2024
1 parent dbb12a4 commit 2fd538f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Series.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,7 @@ void Series::init(
std::make_unique<DummyIOHandler>(parsed_directory, at));
auto &series = get();
series.iterations.linkHierarchy(writable());
series.m_rankTable.m_attributable.linkHierarchy(writable());
series.m_deferred_initialization =
[called_this_already = false, filepath, options, at, comm...](
Series &s) mutable {
Expand Down Expand Up @@ -2873,7 +2874,9 @@ Series::Series(
std::string const &options)
: Attributable(NoInit())
{
setData(std::make_shared<internal::SeriesData>());
auto data = std::make_shared<internal::SeriesData>();
data->m_communicator = comm;
setData(std::move(data));
init(filepath, at, options, comm);
}
#endif
Expand Down

0 comments on commit 2fd538f

Please sign in to comment.