Add default to class declaration

kimkulling/fix_static_code_analysis_findings
Kim Kulling 2024-01-31 09:19:03 +01:00 committed by GitHub
parent 5d069d99cc
commit 8c95122a18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,7 @@
Open Asset Import Library (assimp) Open Asset Import Library (assimp)
---------------------------------------------------------------------- ----------------------------------------------------------------------
Copyright (c) 2006-2022, assimp team Copyright (c) 2006-2024, assimp team
All rights reserved. All rights reserved.
@ -62,8 +62,11 @@ namespace Assimp {
*/ */
class IRRMeshImporter : public BaseImporter, public IrrlichtBase { class IRRMeshImporter : public BaseImporter, public IrrlichtBase {
public: public:
IRRMeshImporter(); /// @brief The class constructor.
~IRRMeshImporter() override; IRRMeshImporter() = default;
/// @brief The class destructor.
~IRRMeshImporter() override = default;
// ------------------------------------------------------------------- // -------------------------------------------------------------------
/** Returns whether the class can handle the format of the given file. /** Returns whether the class can handle the format of the given file.