From 3585dd577dde0106c5802d841475c6cd6d53931d Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Thu, 16 Feb 2023 11:19:23 +0100 Subject: [PATCH] Fix: Add default parameter to constructor/destructor. --- code/PostProcessing/JoinVerticesProcess.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/code/PostProcessing/JoinVerticesProcess.h b/code/PostProcessing/JoinVerticesProcess.h index f95236e31..b05d74ef5 100644 --- a/code/PostProcessing/JoinVerticesProcess.h +++ b/code/PostProcessing/JoinVerticesProcess.h @@ -64,8 +64,13 @@ namespace Assimp */ class ASSIMP_API JoinVerticesProcess : public BaseProcess { 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.