[cfe-commits] r60611 - /cfe/trunk/lib/AST/DeclObjC.cpp

Fariborz Jahanian fjahanian at apple.com
Fri Dec 5 14:36:19 PST 2008


Author: fjahanian
Date: Fri Dec  5 16:36:19 2008
New Revision: 60611

URL: http://llvm.org/viewvc/llvm-project?rev=60611&view=rev
Log:
Fixed a comment.

Modified:
    cfe/trunk/lib/AST/DeclObjC.cpp

Modified: cfe/trunk/lib/AST/DeclObjC.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/DeclObjC.cpp?rev=60611&r1=60610&r2=60611&view=diff

==============================================================================
--- cfe/trunk/lib/AST/DeclObjC.cpp (original)
+++ cfe/trunk/lib/AST/DeclObjC.cpp Fri Dec  5 16:36:19 2008
@@ -730,8 +730,8 @@
 }
 
 /// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
-/// properties implemented in this @implementation block and returns it if 
-/// found.
+/// properties implemented in this @implementation block and returns the
+/// implemented property that uses it.
 ///
 ObjCPropertyImplDecl *ObjCImplementationDecl::FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
   for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i) {
@@ -744,8 +744,8 @@
 }
 
 /// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
-/// properties implemented in this category @implementation block and returns it if 
-/// found.
+/// properties implemented in this category @implementation block and returns the 
+/// implemented property that uses it.
 ///
 ObjCPropertyImplDecl *ObjCCategoryImplDecl::FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
   for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i) {





More information about the cfe-commits mailing list