Fix: Add default parameter to constructor/destructor.

pull/4940/head
Kim Kulling 2023-02-16 11:19:23 +01:00 committed by GitHub
parent 7877dab43a
commit 3585dd577d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -64,8 +64,13 @@ namespace Assimp
*/ */
class ASSIMP_API JoinVerticesProcess : public BaseProcess { class ASSIMP_API JoinVerticesProcess : public BaseProcess {
public: public:
JoinVerticesProcess(); // -------------------------------------------------------------------
~JoinVerticesProcess(); /// @brief The default class constructor.
JoinVerticesProcess() = default;
// -------------------------------------------------------------------
/// @brief The default class destructor.
~JoinVerticesProcess() = default;
// ------------------------------------------------------------------- // -------------------------------------------------------------------
/** Returns whether the processing step is present in the given flag field. /** Returns whether the processing step is present in the given flag field.