mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-25 20:45:35 -04:00
Merge pull request #1354 from paulromano/mesh-virtual-dtr
Add a missing virtual destructor on Mesh
This commit is contained in:
commit
d5136c8cb0
1 changed files with 2 additions and 1 deletions
|
|
@ -33,9 +33,10 @@ extern std::unordered_map<int32_t, int32_t> mesh_map;
|
|||
class Mesh
|
||||
{
|
||||
public:
|
||||
// Constructors
|
||||
// Constructors and destructor
|
||||
Mesh() = default;
|
||||
Mesh(pugi::xml_node node);
|
||||
virtual ~Mesh() = default;
|
||||
|
||||
// Methods
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue