diff options
Diffstat (limited to 'clang/lib/Sema/SemaDeclObjC.cpp')
| -rw-r--r-- | clang/lib/Sema/SemaDeclObjC.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/clang/lib/Sema/SemaDeclObjC.cpp b/clang/lib/Sema/SemaDeclObjC.cpp index 9f37e900cdf..b9fc5b719a2 100644 --- a/clang/lib/Sema/SemaDeclObjC.cpp +++ b/clang/lib/Sema/SemaDeclObjC.cpp @@ -1251,10 +1251,10 @@ Sema::DeclTy *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,            *isOverridingProperty = true;            return 0;          } -        // else -        // FIXME: -        // no matching property found in the main class. Must simply -        // add this property to the main class's property list. +        // No matching property found in the main class. Just fall thru +        // and add property to the anonymous category. It looks like +	// it works as is. This category becomes just like a category +	// for its primary class.        } else {            Diag(CDecl->getLocation(), diag::err_continuation_class);            *isOverridingProperty = true; | 

