mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 13:15:39 -04:00
Add a missing virtual destructor on Mesh
This commit is contained in:
parent
7fe2055b43
commit
30efbcc6a8
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