Skip to content
Snippets Groups Projects
Commit 05ef4c74 authored by Timo Koch's avatar Timo Koch
Browse files

[fix] Add virtual destructor to vtkoutputmodule base class

parent 3337394d
No related branches found
No related tags found
1 merge request!2082[fix] Add virtual destructor to vtkoutputmodule base class
...@@ -86,6 +86,8 @@ public: ...@@ -86,6 +86,8 @@ public:
writer_ = std::make_shared<Dune::VTKWriter<GridView>>(gridGeometry.gridView(), dm, coordPrecision); writer_ = std::make_shared<Dune::VTKWriter<GridView>>(gridGeometry.gridView(), dm, coordPrecision);
sequenceWriter_ = std::make_unique<Dune::VTKSequenceWriter<GridView>>(writer_, name); sequenceWriter_ = std::make_unique<Dune::VTKSequenceWriter<GridView>>(writer_, name);
} }
virtual ~VtkOutputModuleBase() = default;
//! the parameter group for getting parameter from the parameter tree //! the parameter group for getting parameter from the parameter tree
const std::string& paramGroup() const const std::string& paramGroup() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment