]> granicus.if.org Git - clang/commitdiff
Changed wording of warning when attribute is on
authorFariborz Jahanian <fjahanian@apple.com>
Wed, 13 May 2009 00:47:33 +0000 (00:47 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Wed, 13 May 2009 00:47:33 +0000 (00:47 +0000)
method definition.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71615 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticSemaKinds.td
test/SemaObjC/attr-deprecated.m
test/SemaObjC/method-attributes.m

index 466f5495eb473ee9693ff5bda65ffd8261a088fd..8cd5e4288338fe0fbe17d65278a828b07a618aec 100644 (file)
@@ -1732,7 +1732,7 @@ def error_private_ivar_access : Error<"instance variable %0 is private">;
 def error_protected_ivar_access : Error<"instance variable %0 is protected">;
 def warn_maynot_respond : Warning<"%0  may not respond to %1">;
 def warn_attribute_method_def : Warning<
-  "method attribute may be specified on method declarations only">;
+  "method attribute can only be specified on method declarations">;
 
 
 }
index 3741510e11313fe6c8f875237284728172d09559..e385a977f55b3aabf97441aa05c9ad0bb020d458 100644 (file)
@@ -9,7 +9,7 @@
 
 @implementation A
 + (void)F __attribute__((deprecated))
-{      // expected-warning {{method attribute may be specified on method declarations only}}
+{      // expected-warning {{method attribute can only be specified on method declarations}}
   [self F]; // no warning, since the caller is also deprecated.
 }
 
index 354950c49c756fdfb50604a507ccaf662eb9a25e..c4d4fba25d6eca9ced1ae97c1044295ac5fa548c 100644 (file)
 @end
 
 @implementation INTF
-- (int) foo: (int)arg1  __attribute__((deprecated)){ // expected-warning {{method attribute may be specified}}
+- (int) foo: (int)arg1  __attribute__((deprecated)){ // expected-warning {{method attribute can only be specified}}
         return 10;
 }
 - (int) foo1: (int)arg1 {
         return 10;
 }
-- (int) foo2: (int)arg1 __attribute__((deprecated)) {  // expected-warning {{method attribute may be specified}}
+- (int) foo2: (int)arg1 __attribute__((deprecated)) {  // expected-warning {{method attribute can only be specified}}
         return 10;
 }
 @end