File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ char ExpressionError::ID;
4848namespace {
4949// / A std::error_code category for eErrorTypeGeneric.
5050class LLDBGenericCategory : public std ::error_category {
51- const char *name () const override { return " LLDBGenericCategory" ; }
51+ const char *name () const noexcept override { return " LLDBGenericCategory" ; }
5252 std::string message (int __ev) const override { return " generic LLDB error" ; };
5353};
5454LLDBGenericCategory &lldb_generic_category () {
@@ -58,7 +58,9 @@ LLDBGenericCategory &lldb_generic_category() {
5858
5959// / A std::error_code category for eErrorTypeExpression.
6060class ExpressionCategory : public std ::error_category {
61- const char *name () const override { return " LLDBExpressionCategory" ; }
61+ const char *name () const noexcept override {
62+ return " LLDBExpressionCategory" ;
63+ }
6264 std::string message (int __ev) const override {
6365 return ExpressionResultAsCString (
6466 static_cast <lldb::ExpressionResults>(__ev));
You can’t perform that action at this time.
0 commit comments