diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-01-10 18:10:31 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-01-10 18:10:31 +0000 |
commit | a12a75faa61d7298ea27d8606a7d8f8f3584f9fa (patch) | |
tree | 7d15b2dcda61e7abd41b2e1c6b603dd14ceffee9 | |
parent | 8c04a4ca98454236e612e6e5c8eb791579e0e9ca (diff) |
Remove non-ascii chaaracter from diagnostic
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45836 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticKinds.def | 2 | ||||
-rw-r--r-- | test/Parser/objc-missing-impl.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticKinds.def b/include/clang/Basic/DiagnosticKinds.def index 39f1876dd1..1191455d74 100644 --- a/include/clang/Basic/DiagnosticKinds.def +++ b/include/clang/Basic/DiagnosticKinds.def @@ -479,7 +479,7 @@ DIAG(err_selector_element_type, ERROR, DIAG(err_toomany_element_decls, ERROR, "Only one element declaration is allowed") DIAG(warn_expected_implementation, WARNING, - "'@end' must appear in an @implementation context") + "@end must appear in an @implementation context") //===----------------------------------------------------------------------===// // Semantic Analysis diff --git a/test/Parser/objc-missing-impl.m b/test/Parser/objc-missing-impl.m index 062130d358..7d38371190 100644 --- a/test/Parser/objc-missing-impl.m +++ b/test/Parser/objc-missing-impl.m @@ -1,2 +1,2 @@ // RUN: clang -fsyntax-only -verify %s -@end // expected-warning {{‘@end’ must appear in an @implementation context}} +@end // expected-warning {{@end must appear in an @implementation context}} |