From c962f9a624dc748a1c5b5a1c623db65312fed865 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Thu, 21 Mar 2013 06:09:09 +0000 Subject: [PATCH] Fix a typo. llvm-svn: 177626 --- clang/include/clang/Basic/DiagnosticGroups.td | 2 +- clang/include/clang/Basic/DiagnosticSemaKinds.td | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clang/include/clang/Basic/DiagnosticGroups.td b/clang/include/clang/Basic/DiagnosticGroups.td index 4ddf207..0ff0460 100644 --- a/clang/include/clang/Basic/DiagnosticGroups.td +++ b/clang/include/clang/Basic/DiagnosticGroups.td @@ -494,7 +494,7 @@ def ObjCNonUnifiedException : DiagGroup<"objc-nonunified-exceptions">; 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">; diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index 93f0697..3c067cd 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -672,12 +672,12 @@ def warn_auto_synthesizing_protocol_property :Warning< 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; + InGroup; 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; + InGroup; def warn_autosynthesis_property_ivar_match :Warning< "autosynthesized property %0 will use %select{|synthesized}1 instance variable " "%2, not existing instance variable %3">, -- 2.7.4