aboutsummaryrefslogtreecommitdiff
path: root/lib/Index/Entity.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2010-07-05 02:36:16 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2010-07-05 02:36:16 +0000
commit8d26bb7249c76104f14d02454daa74cc5c462957 (patch)
tree252ec19e6a2c64e16f30a0234e9bea0a3560f421 /lib/Index/Entity.cpp
parentc8822e06d0420afb8e315ad82566d6c1173ad02f (diff)
Refrase comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107607 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Index/Entity.cpp')
-rw-r--r--lib/Index/Entity.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Index/Entity.cpp b/lib/Index/Entity.cpp
index 06e22bbd04..8178fbe7ab 100644
--- a/lib/Index/Entity.cpp
+++ b/lib/Index/Entity.cpp
@@ -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();
}