Merge pull request #1354 from paulromano/mesh-virtual-dtr

Add a missing virtual destructor on Mesh
This commit is contained in:
Patrick Shriwise 2019-09-19 09:07:05 -05:00 committed by GitHub
commit d5136c8cb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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