Mark ModelParser constructors noexcept

This commit is contained in:
JosiahWI 2023-05-18 06:56:36 -05:00 committed by Josiah VanderZee
parent bd07af3ad4
commit 84a556a723
2 changed files with 2 additions and 3 deletions

View File

@ -112,13 +112,13 @@ IAnimatedMesh* CGLTFMeshFileLoader::createMesh(io::IReadFile* file)
}
CGLTFMeshFileLoader::ModelParser::ModelParser(
const tinygltf::Model& model)
const tinygltf::Model& model) noexcept
: m_model(model)
{
}
CGLTFMeshFileLoader::ModelParser::ModelParser(
const tinygltf::Model&& model)
const tinygltf::Model&& model) noexcept
: m_model(model)
{
}

View File

@ -128,4 +128,3 @@ private:
} // namespace irr
#endif // __C_GLTF_MESH_FILE_LOADER_INCLUDED__