diff options
Diffstat (limited to 'include/clang/Basic')
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.def | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.def b/include/clang/Basic/DiagnosticSemaKinds.def index 34fc2e8ef7..b354bf8767 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.def +++ b/include/clang/Basic/DiagnosticSemaKinds.def @@ -869,6 +869,8 @@ DIAG(error_bad_receiver_type, ERROR, "bad receiver type %0") DIAG(warn_objc_throw_expects_object, WARNING, "invalid %0 argument (expected an ObjC object type)") +DIAG(error_rethrow_used_outside_catch, ERROR, + "‘@throw’ (rethrow) used outside of a @catch block") // C++ casts |