forked from OSchip/llvm-project
Remove some non-ascii characters. Thanks Gabor.
llvm-svn: 64330
This commit is contained in:
parent
27b508db9b
commit
22cc840947
|
@ -870,7 +870,7 @@ DIAG(error_bad_receiver_type, ERROR,
|
|||
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")
|
||||
"@throw (rethrow) used outside of a @catch block")
|
||||
|
||||
|
||||
// C++ casts
|
||||
|
|
|
@ -39,5 +39,5 @@ typedef struct _NSZone NSZone;
|
|||
|
||||
int foo() {
|
||||
@throw 42; // expected-warning {{invalid 'int' argument (expected an ObjC object type)}}
|
||||
@throw; // expected-error {{‘@throw’ (rethrow) used outside of a @catch block}}
|
||||
@throw; // expected-error {{@throw (rethrow) used outside of a @catch block}}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue