Mark CGLTFMeshFileLoader constructor as noexcept

This commit is contained in:
JosiahWI 2023-05-13 12:12:22 -05:00
parent 850bf1a949
commit 280eb5b27f
No known key found for this signature in database
GPG Key ID: C7BB8573A4ABC4B9
2 changed files with 2 additions and 2 deletions

View File

@ -218,7 +218,7 @@ static void getVertices
}
}
CGLTFMeshFileLoader::CGLTFMeshFileLoader()
CGLTFMeshFileLoader::CGLTFMeshFileLoader() noexcept
{
}

View File

@ -17,7 +17,7 @@ namespace scene
class CGLTFMeshFileLoader : public IMeshLoader
{
public:
CGLTFMeshFileLoader();
CGLTFMeshFileLoader() noexcept;
bool isALoadableFileExtension(const io::path& filename) const override;