r177626 - Fix a typo.
Bob Wilson
bob.wilson at apple.com
Wed Mar 20 23:09:09 PDT 2013
Author: bwilson
Date: Thu Mar 21 01:09:09 2013
New Revision: 177626
URL: http://llvm.org/viewvc/llvm-project?rev=177626&view=rev
Log:
Fix a typo.
Modified:
cfe/trunk/include/clang/Basic/DiagnosticGroups.td
cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
Modified: cfe/trunk/include/clang/Basic/DiagnosticGroups.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticGroups.td?rev=177626&r1=177625&r2=177626&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticGroups.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticGroups.td Thu Mar 21 01:09:09 2013
@@ -494,7 +494,7 @@ def ObjCNonUnifiedException : DiagGroup<
def ObjCProtocolMethodImpl : DiagGroup<"objc-protocol-method-implementation">;
-def ObjCNoPropertyAuthoSynthesis : DiagGroup<"objc-property-synthesis">;
+def ObjCNoPropertyAutoSynthesis : DiagGroup<"objc-property-synthesis">;
// ObjC API warning groups.
def ObjCRedundantLiteralUse : DiagGroup<"objc-redundant-literal-use">;
Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=177626&r1=177625&r2=177626&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Thu Mar 21 01:09:09 2013
@@ -672,12 +672,12 @@ def warn_auto_synthesizing_protocol_prop
def warn_no_autosynthesis_shared_ivar_property : Warning <
"auto property synthesis will not synthesize property "
"'%0' because it cannot share an ivar with another synthesized property">,
- InGroup<ObjCNoPropertyAuthoSynthesis>;
+ InGroup<ObjCNoPropertyAutoSynthesis>;
def warn_no_autosynthesis_property : Warning<
"auto property synthesis will not synthesize property "
"'%0' because it is 'readwrite' but it will be synthesized 'readonly' "
"via another property">,
- InGroup<ObjCNoPropertyAuthoSynthesis>;
+ InGroup<ObjCNoPropertyAutoSynthesis>;
def warn_autosynthesis_property_ivar_match :Warning<
"autosynthesized property %0 will use %select{|synthesized}1 instance variable "
"%2, not existing instance variable %3">,
More information about the cfe-commits
mailing list