[cfe-commits] r107607 - /cfe/trunk/lib/Index/Entity.cpp

Zhongxing Xu xuzhongxing at gmail.com
Sun Jul 4 19:36:16 PDT 2010


Author: zhongxingxu
Date: Sun Jul  4 21:36:16 2010
New Revision: 107607

URL: http://llvm.org/viewvc/llvm-project?rev=107607&view=rev
Log:
Refrase comments.

Modified:
    cfe/trunk/lib/Index/Entity.cpp

Modified: cfe/trunk/lib/Index/Entity.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Index/Entity.cpp?rev=107607&r1=107606&r2=107607&view=diff
==============================================================================
--- cfe/trunk/lib/Index/Entity.cpp (original)
+++ cfe/trunk/lib/Index/Entity.cpp Sun Jul  4 21:36:16 2010
@@ -132,9 +132,9 @@
 }
 
 Entity EntityGetter::VisitTypeDecl(TypeDecl *D) {
-  // Make TypeDecl an invalid Entity. Although in C++ class name has external
-  // linkage, usually the definition of the class is available in the same
-  // translation unit when it's needed. So we make all of them invalid Entity.
+  // Although in C++ class name has external linkage, usually the definition of
+  // the class is available in the same translation unit when it's needed. So we
+  // make all of them invalid Entity.
   return Entity();
 }
 





More information about the cfe-commits mailing list