From 9d57ac9cc5cde97b01b5c0afb7d07835c3af946c Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Mon, 5 Dec 2022 13:15:42 +0100 Subject: [PATCH] Fix:Add missing semicolon. --- code/AssetLib/ASE/ASELoader.cpp | 4 ---- code/AssetLib/ASE/ASELoader.h | 2 +- code/AssetLib/ASE/ASEParser.h | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/code/AssetLib/ASE/ASELoader.cpp b/code/AssetLib/ASE/ASELoader.cpp index abf4fb9cf..951e8539d 100644 --- a/code/AssetLib/ASE/ASELoader.cpp +++ b/code/AssetLib/ASE/ASELoader.cpp @@ -87,10 +87,6 @@ ASEImporter::ASEImporter() : // empty } -// ------------------------------------------------------------------------------------------------ -// Destructor, private as well -ASEImporter::~ASEImporter() = default; - // ------------------------------------------------------------------------------------------------ // Returns whether the class can handle the format of the given file. bool ASEImporter::CanRead(const std::string &pFile, IOSystem *pIOHandler, bool /*checkSig*/) const { diff --git a/code/AssetLib/ASE/ASELoader.h b/code/AssetLib/ASE/ASELoader.h index cd9123556..2509671ef 100644 --- a/code/AssetLib/ASE/ASELoader.h +++ b/code/AssetLib/ASE/ASELoader.h @@ -62,7 +62,7 @@ namespace Assimp { class ASEImporter : public BaseImporter { public: ASEImporter(); - ~ASEImporter() override; + ~ASEImporter() override = default; // ------------------------------------------------------------------- /** Returns whether the class can handle the format of the given file. diff --git a/code/AssetLib/ASE/ASEParser.h b/code/AssetLib/ASE/ASEParser.h index 79cb43f89..c41cd59d3 100644 --- a/code/AssetLib/ASE/ASEParser.h +++ b/code/AssetLib/ASE/ASEParser.h @@ -386,7 +386,7 @@ struct Dummy : public BaseNode { class Parser { public: /// @brief No default constructor. - Parser() AI_NO_EXCEPT = delete + Parser() = delete; // ------------------------------------------------------------------- //! Construct a parser from a given input file which is