summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-18 19:19:22 +0000
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-18 19:19:22 +0000
commit40dcc3c6b451b708058bf2f09eca0d15e46c1352 (patch)
tree2843b83d76bdf61a0f826b336eaab2e4941d7f13 /src/util
parentRun clang-tidy’s modernize-use-bool-literals pass. (diff)
downloadinkscape-40dcc3c6b451b708058bf2f09eca0d15e46c1352.tar.gz
inkscape-40dcc3c6b451b708058bf2f09eca0d15e46c1352.zip
Run clang-tidy’s modernize-use-noexcept pass.
This removes deprecated dynamic exception specifications.
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: