parent
b08c98f125
commit
9ac117ea1c
|
|
@ -422,8 +422,6 @@ def err_unexpected_protocol_qualifier : Error<
|
||||||
"@implementation declaration cannot be protocol qualified">;
|
"@implementation declaration cannot be protocol qualified">;
|
||||||
def err_objc_unexpected_atend : Error<
|
def err_objc_unexpected_atend : Error<
|
||||||
"'@end' appears where closing brace '}' is expected">;
|
"'@end' appears where closing brace '}' is expected">;
|
||||||
def err_property_ivar_decl : Error<
|
|
||||||
"property synthesize requires specification of an ivar">;
|
|
||||||
def err_synthesized_property_name : Error<
|
def err_synthesized_property_name : Error<
|
||||||
"expected a property name in @synthesize">;
|
"expected a property name in @synthesize">;
|
||||||
def warn_semicolon_before_method_body : Warning<
|
def warn_semicolon_before_method_body : Warning<
|
||||||
|
|
|
||||||
|
|
@ -1050,8 +1050,6 @@ def err_synthesize_category_decl : Error<
|
||||||
"@synthesize not allowed in a category's implementation">;
|
"@synthesize not allowed in a category's implementation">;
|
||||||
def err_synthesize_on_class_property : Error<
|
def err_synthesize_on_class_property : Error<
|
||||||
"@synthesize not allowed on a class property %0">;
|
"@synthesize not allowed on a class property %0">;
|
||||||
def err_reference_property : Error<
|
|
||||||
"property of reference type is not supported">;
|
|
||||||
def err_missing_property_interface : Error<
|
def err_missing_property_interface : Error<
|
||||||
"property implementation in a category with no category declaration">;
|
"property implementation in a category with no category declaration">;
|
||||||
def err_bad_category_property_decl : Error<
|
def err_bad_category_property_decl : Error<
|
||||||
|
|
@ -1306,8 +1304,6 @@ def err_mismatched_exception_spec : Error<
|
||||||
"exception specification in declaration does not match previous declaration">;
|
"exception specification in declaration does not match previous declaration">;
|
||||||
def ext_mismatched_exception_spec : ExtWarn<err_mismatched_exception_spec.Text>,
|
def ext_mismatched_exception_spec : ExtWarn<err_mismatched_exception_spec.Text>,
|
||||||
InGroup<MicrosoftExceptionSpec>;
|
InGroup<MicrosoftExceptionSpec>;
|
||||||
def warn_mismatched_exception_spec_no_exceptions : ExtWarn<err_mismatched_exception_spec.Text>,
|
|
||||||
InGroup<DiagGroup<"exception-spec-no-exceptions">>;
|
|
||||||
def err_override_exception_spec : Error<
|
def err_override_exception_spec : Error<
|
||||||
"exception specification of overriding function is more lax than "
|
"exception specification of overriding function is more lax than "
|
||||||
"base version">;
|
"base version">;
|
||||||
|
|
@ -7943,8 +7939,6 @@ def warn_direct_super_initialize_call : Warning<
|
||||||
InGroup<ExplicitInitializeCall>;
|
InGroup<ExplicitInitializeCall>;
|
||||||
def err_ivar_use_in_class_method : Error<
|
def err_ivar_use_in_class_method : Error<
|
||||||
"instance variable %0 accessed in class method">;
|
"instance variable %0 accessed in class method">;
|
||||||
def err_implicit_ivar_access : Error<
|
|
||||||
"instance variable %0 cannot be accessed because 'self' has been redeclared">;
|
|
||||||
def err_private_ivar_access : Error<"instance variable %0 is private">,
|
def err_private_ivar_access : Error<"instance variable %0 is private">,
|
||||||
AccessControl;
|
AccessControl;
|
||||||
def err_protected_ivar_access : Error<"instance variable %0 is protected">,
|
def err_protected_ivar_access : Error<"instance variable %0 is protected">,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue