From 1d06d52f1867438a39c544e8481a9469fd7472d5 Mon Sep 17 00:00:00 2001 From: Marius Kittler Date: Wed, 6 Feb 2019 18:02:14 +0100 Subject: [PATCH] Add override to ~ParsingException() --- io/parsingexception.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/parsingexception.h b/io/parsingexception.h index 9fcec8c..cf46941 100644 --- a/io/parsingexception.h +++ b/io/parsingexception.h @@ -12,7 +12,7 @@ class PASSWORD_FILE_EXPORT ParsingException : public std::runtime_error { public: explicit ParsingException(const std::string &message = std::string()) noexcept; explicit ParsingException(const char *message) noexcept; - ~ParsingException(); + ~ParsingException() override; }; } // namespace Io