Add override to ~ParsingException()

This commit is contained in:
Marius Kittler 2019-02-06 18:02:14 +01:00
parent 2828061193
commit 1d06d52f18
1 changed files with 1 additions and 1 deletions

View File

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