Add a missing virtual destructor on Mesh

This commit is contained in:
Paul Romano 2019-09-18 13:33:58 -05:00
parent 7fe2055b43
commit 30efbcc6a8

View file

@ -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