diff options
author | Steve Naroff <snaroff@apple.com> | 2009-02-11 22:01:48 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-02-11 22:01:48 +0000 |
commit | 22cc840947548df3cd0192f12497b05475980401 (patch) | |
tree | 5e1bb5e010d2a01251ea0455023c04f0d8eaa8b3 /clang/test/SemaObjC | |
parent | 27b508db9b73c8e7942f012accba1e7f1b64d60d (diff) | |
download | bcm5719-llvm-22cc840947548df3cd0192f12497b05475980401.tar.gz bcm5719-llvm-22cc840947548df3cd0192f12497b05475980401.zip |
Remove some non-ascii characters. Thanks Gabor.
llvm-svn: 64330
Diffstat (limited to 'clang/test/SemaObjC')
-rw-r--r-- | clang/test/SemaObjC/try-catch.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaObjC/try-catch.m b/clang/test/SemaObjC/try-catch.m index bb8b8491d66..d3be70c74ab 100644 --- a/clang/test/SemaObjC/try-catch.m +++ b/clang/test/SemaObjC/try-catch.m @@ -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}} } |