Remove unnecessary constructor

This commit is contained in:
Lars Mueller 2024-05-22 00:12:33 +02:00
parent b734119d05
commit d4de89cbe7

@ -98,11 +98,6 @@ class CGLTFMeshFileLoader : public IMeshLoader
class MeshExtractor {
public:
MeshExtractor(const tiniergltf::GlTF &model,
ISkinnedMesh *mesh) noexcept
: m_gltf_model(model), m_irr_model(mesh) {};
MeshExtractor(tiniergltf::GlTF &&model,
ISkinnedMesh *mesh) noexcept
: m_gltf_model(model), m_irr_model(mesh) {};