diff options
Diffstat (limited to 'include/clang/Basic/DiagnosticSemaKinds.td')
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index d6840903e3..e9df286d2d 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -2580,7 +2580,8 @@ def err_getter_not_found : Error< def err_property_not_found_forward_class : Error< "property %0 cannot be found in forward class object %1">; def err_property_not_as_forward_class : Error< - "property %0 names an object of forward class type in class object %1">; + "property %0 refers to an incomplete Objective-C class %1 " + "(with no @interface available)">; def note_forward_class : Note< "forward class is declared here">; def err_duplicate_property : Error< |