]> granicus.if.org Git - clang/commitdiff
Fix warning text of my last patch.
authorFariborz Jahanian <fjahanian@apple.com>
Thu, 28 Feb 2013 23:16:39 +0000 (23:16 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Thu, 28 Feb 2013 23:16:39 +0000 (23:16 +0000)
// rdar://13158394

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

include/clang/Basic/DiagnosticParseKinds.td
test/FixIt/fixit-objc.m
test/Parser/placeholder-recovery.m
test/SemaObjC/protocol-archane.m

index 05255d17e924d15076cbc544931a91525c9964b5..2656a8bb8bea5ce3a9d9c0ca5a0e468a6e4f6b9d 100644 (file)
@@ -363,7 +363,7 @@ def note_objc_container_start : Note<
   "%select{class|protocol|category|class extension|implementation"
   "|category implementation}0 started here">;
 def warn_objc_protocol_qualifier_missing_id : Warning<
-  "property has no object type specified; defaults to qualified 'id'">;
+  "protocol has no object type specified; defaults to qualified 'id'">;
 def err_objc_unknown_at : Error<"expected an Objective-C directive after '@'">;
 def err_illegal_super_cast : Error<
   "cannot cast 'super' (it isn't an expression)">;
index ddcd87a6ac170b432f61d3f4590e8ef2cbd13516..ea57fe671b9435b2fb8dd5a8552139d938a69edb 100644 (file)
@@ -11,7 +11,7 @@
 @protocol X;
 
 void foo() {
-  <X> *P;    // expected-warning{{property has no object type specified; defaults to qualified 'id'}}
+  <X> *P;    // expected-warning{{protocol has no object type specified; defaults to qualified 'id'}}
 }
 
 @class A;
index f7c5c30b517ef52a6008c6054f9d572f359c5f0a..3fe1d62c3042b8f0342b720f2d1797b787e1a018 100644 (file)
@@ -5,7 +5,7 @@
 // bogus 'archaic' warnings with bad location info.
 @protocol <#protocol name#> <NSObject> // expected-error 2{{expected identifier}} \
 // expected-error{{cannot find protocol declaration for 'NSObject'}} \
-// expected-warning{{property has no object type specified; defaults to qualified 'id'}}
+// expected-warning{{protocol has no object type specified; defaults to qualified 'id'}}
 
 <#methods#>  // expected-error{{expected identifier}}
 
index 9d1526d6937f9120dbed8d03539acc92ada1b22f..788edf276d7bf81a6c8a80ea959032c878ca8638 100644 (file)
@@ -8,9 +8,9 @@
 void bar();
 void foo(id x) {
   bar((short<SomeProtocol>)x); // expected-error {{expected ')'}} expected-note {{to match this '('}}
-  bar((<SomeProtocol>)x);      // expected-warning {{property has no object type specified; defaults to qualified 'id'}}
+  bar((<SomeProtocol>)x);      // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}}
 
-  [(<SomeProtocol>)x bar];      // expected-warning {{property has no object type specified; defaults to qualified 'id'}}
+  [(<SomeProtocol>)x bar];      // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}}
 }
 
 @protocol MyProtocol
@@ -37,6 +37,6 @@ Class <SomeProtocol> UnfortunateGCCExtension;
 @protocol Broken @end
 @interface Crash @end
 @implementation Crash
-- (void)crashWith:(<Broken>)a { // expected-warning {{property has no object type specified; defaults to qualified 'id'}}
+- (void)crashWith:(<Broken>)a { // expected-warning {{protocol has no object type specified; defaults to qualified 'id'}}
 }
 @end