mirror of
https://github.com/minetest/irrlicht.git
synced 2025-02-22 22:00:26 +01:00
Mark ModelParser constructors noexcept
This commit is contained in:
parent
22f6012d2e
commit
0f73c30a1f
@ -112,13 +112,13 @@ IAnimatedMesh* CGLTFMeshFileLoader::createMesh(io::IReadFile* file)
|
|||||||
}
|
}
|
||||||
|
|
||||||
CGLTFMeshFileLoader::ModelParser::ModelParser(
|
CGLTFMeshFileLoader::ModelParser::ModelParser(
|
||||||
const tinygltf::Model& model)
|
const tinygltf::Model& model) noexcept
|
||||||
: m_model(model)
|
: m_model(model)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
CGLTFMeshFileLoader::ModelParser::ModelParser(
|
CGLTFMeshFileLoader::ModelParser::ModelParser(
|
||||||
const tinygltf::Model&& model)
|
const tinygltf::Model&& model) noexcept
|
||||||
: m_model(model)
|
: m_model(model)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -128,4 +128,3 @@ private:
|
|||||||
} // namespace irr
|
} // namespace irr
|
||||||
|
|
||||||
#endif // __C_GLTF_MESH_FILE_LOADER_INCLUDED__
|
#endif // __C_GLTF_MESH_FILE_LOADER_INCLUDED__
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user