summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/expression-evaluator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/expression-evaluator.h b/src/util/expression-evaluator.h
index 23b431a8e..343278c53 100644
--- a/src/util/expression-evaluator.h
+++ b/src/util/expression-evaluator.h
@@ -177,9 +177,9 @@ public:
msgstr = os.str();
}
- ~EvaluatorException() throw() override = default; // necessary to destroy the string object!!!
+ ~EvaluatorException() noexcept override = default; // necessary to destroy the string object!!!
- const char *what() const throw () override {
+ const char *what() const noexcept override {
return msgstr.c_str();
}
protected: