Skip to content

Commit

Permalink
Fix gcc9 warning (#1429)
Browse files Browse the repository at this point in the history
the implicitly-defined constructor does not initialize 'openPMD::Datatype openPMD::detail::BufferedUniquePtrPut::dtype'
  • Loading branch information
franzpoeschel authored Apr 25, 2023
1 parent 3acf565 commit e2a79ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/openPMD/IO/ADIOS/ADIOS2IOHandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ namespace detail
Offset offset;
Extent extent;
UniquePtrWithLambda<void> data;
Datatype dtype;
Datatype dtype = Datatype::UNDEFINED;

void run(BufferedActions &);
};
Expand Down

0 comments on commit e2a79ae

Please sign in to comment.