Browse Source

Fix: Add default parameter to constructor/destructor.

Kim Kulling 2 years ago
parent
commit
3585dd577d
1 changed files with 7 additions and 2 deletions
  1. 7 2
      code/PostProcessing/JoinVerticesProcess.h

+ 7 - 2
code/PostProcessing/JoinVerticesProcess.h

@@ -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.