[cfe-commits] r45836 - in /cfe/trunk: include/clang/Basic/DiagnosticKinds.def test/Parser/objc-missing-impl.m

Fariborz Jahanian fjahanian at apple.com
Thu Jan 10 10:10:31 PST 2008


Author: fjahanian
Date: Thu Jan 10 12:10:31 2008
New Revision: 45836

URL: http://llvm.org/viewvc/llvm-project?rev=45836&view=rev
Log:
Remove non-ascii chaaracter from diagnostic

Modified:
    cfe/trunk/include/clang/Basic/DiagnosticKinds.def
    cfe/trunk/test/Parser/objc-missing-impl.m

Modified: cfe/trunk/include/clang/Basic/DiagnosticKinds.def
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticKinds.def?rev=45836&r1=45835&r2=45836&view=diff

==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticKinds.def (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticKinds.def Thu Jan 10 12:10:31 2008
@@ -479,7 +479,7 @@
 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

Modified: cfe/trunk/test/Parser/objc-missing-impl.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Parser/objc-missing-impl.m?rev=45836&r1=45835&r2=45836&view=diff

==============================================================================
--- cfe/trunk/test/Parser/objc-missing-impl.m (original)
+++ cfe/trunk/test/Parser/objc-missing-impl.m Thu Jan 10 12:10:31 2008
@@ -1,2 +1,2 @@
 // RUN: clang -fsyntax-only -verify %s
- at end // expected-warning {{‘@end’ must appear in an @implementation context}}
+ at end // expected-warning {{@end must appear in an @implementation context}}





More information about the cfe-commits mailing list