diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-07-05 02:36:16 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-07-05 02:36:16 +0000 |
commit | 1bbbc2e50932d2620b9773e9655c71c328f28bc0 (patch) | |
tree | d6f25afd88bf93c76181f65f8b1abed6c3d51c99 /clang/lib/Index/Entity.cpp | |
parent | 74458782cc5b5ebb7ecbe5f0dbc02654b3a3338a (diff) | |
download | bcm5719-llvm-1bbbc2e50932d2620b9773e9655c71c328f28bc0.tar.gz bcm5719-llvm-1bbbc2e50932d2620b9773e9655c71c328f28bc0.zip |
Refrase comments.
llvm-svn: 107607
Diffstat (limited to 'clang/lib/Index/Entity.cpp')
-rw-r--r-- | clang/lib/Index/Entity.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Index/Entity.cpp b/clang/lib/Index/Entity.cpp index 06e22bbd043..8178fbe7ab4 100644 --- a/clang/lib/Index/Entity.cpp +++ b/clang/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(); } |