mirror of https://github.com/Icinga/icinga2.git
Avoid "~Class() throw() = default;"
This commit is contained in:
parent
2f78b67e74
commit
5b841db4a0
|
@ -34,7 +34,6 @@ class ScriptError : virtual public user_error
|
||||||
public:
|
public:
|
||||||
ScriptError(String message);
|
ScriptError(String message);
|
||||||
ScriptError(String message, DebugInfo di, bool incompleteExpr = false);
|
ScriptError(String message, DebugInfo di, bool incompleteExpr = false);
|
||||||
~ScriptError() throw() = default;
|
|
||||||
|
|
||||||
const char *what(void) const throw() final;
|
const char *what(void) const throw() final;
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,6 @@ class CircularReferenceError : virtual public user_error
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CircularReferenceError(String message, std::vector<String> path);
|
CircularReferenceError(String message, std::vector<String> path);
|
||||||
~CircularReferenceError() throw() = default;
|
|
||||||
|
|
||||||
const char *what(void) const throw() final;
|
const char *what(void) const throw() final;
|
||||||
std::vector<String> GetPath() const;
|
std::vector<String> GetPath() const;
|
||||||
|
|
Loading…
Reference in New Issue