forked from OSchip/llvm-project
Use ObjCMultipleMethodNames to match the option.
llvm-svn: 224585
This commit is contained in:
parent
6492b700c3
commit
049ae4878d
|
@ -274,7 +274,7 @@ def ObjCInvalidIBOutletProperty : DiagGroup<"invalid-iboutlet">;
|
|||
def ObjCRootClass : DiagGroup<"objc-root-class">;
|
||||
def ObjCPointerIntrospectPerformSelector : DiagGroup<"deprecated-objc-pointer-introspection-performSelector">;
|
||||
def ObjCPointerIntrospect : DiagGroup<"deprecated-objc-pointer-introspection", [ObjCPointerIntrospectPerformSelector]>;
|
||||
def ObjCMultipleMethodName : DiagGroup<"objc-multiple-method-names">;
|
||||
def ObjCMultipleMethodNames : DiagGroup<"objc-multiple-method-names">;
|
||||
def DeprecatedObjCIsaUsage : DiagGroup<"deprecated-objc-isa-usage">;
|
||||
def ExplicitInitializeCall : DiagGroup<"explicit-initialize-call">;
|
||||
def Packed : DiagGroup<"packed">;
|
||||
|
|
|
@ -722,7 +722,7 @@ def warn_implements_nscopying : Warning<
|
|||
"NSCopying protocol is not appropriate with -fobjc-gc[-only]">;
|
||||
|
||||
def warn_multiple_method_decl : Warning<"multiple methods named %0 found">,
|
||||
InGroup<ObjCMultipleMethodName>;
|
||||
InGroup<ObjCMultipleMethodNames>;
|
||||
def warn_strict_multiple_method_decl : Warning<
|
||||
"multiple methods named %0 found">, InGroup<StrictSelector>, DefaultIgnore;
|
||||
def warn_accessor_property_type_mismatch : Warning<
|
||||
|
|
Loading…
Reference in New Issue