Merge pull request #7261 from Icinga/bugfix/throw-default

Avoid "~Class() throw() = default;"
This commit is contained in:
Michael Friedrich 2019-07-02 12:33:54 +02:00 committed by GitHub
commit f63d9cce4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -34,7 +34,6 @@ class ScriptError : virtual public user_error
public:
ScriptError(String message);
ScriptError(String message, DebugInfo di, bool incompleteExpr = false);
~ScriptError() throw() = default;
const char *what(void) const throw() final;

View File

@ -15,7 +15,6 @@ class CircularReferenceError : virtual public user_error
{
public:
CircularReferenceError(String message, std::vector<String> path);
~CircularReferenceError() throw() = default;
const char *what(void) const throw() final;
std::vector<String> GetPath() const;