]> granicus.if.org Git - clang/commitdiff
Refrase comments.
authorZhongxing Xu <xuzhongxing@gmail.com>
Mon, 5 Jul 2010 02:36:16 +0000 (02:36 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Mon, 5 Jul 2010 02:36:16 +0000 (02:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107607 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Index/Entity.cpp

index 06e22bbd0431612d7c2be97ca82ed76edf2f8e8a..8178fbe7ab41c5a42d516788c1ec83483d4f420b 100644 (file)
@@ -132,9 +132,9 @@ Entity EntityGetter::VisitFieldDecl(FieldDecl *D) {
 }
 
 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();
 }