aboutsummaryrefslogtreecommitdiff
path: root/lib/Serialization/ASTReader.cpp
diff options
context:
space:
mode:
authorSebastian Redl <sebastian.redl@getdesigned.at>2010-08-24 00:49:55 +0000
committerSebastian Redl <sebastian.redl@getdesigned.at>2010-08-24 00:49:55 +0000
commit8b12273c86ede439edf52d35b170fd32b2ed49d4 (patch)
treed432c75c1d6f9c5de1c11d81c6d73715deca8b59 /lib/Serialization/ASTReader.cpp
parent076c22a99ed82e11b59e8fbf57d8467ceb3fec77 (diff)
Baby step towards supporting namespaces in chained PCH.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111878 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Serialization/ASTReader.cpp')
-rw-r--r--lib/Serialization/ASTReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Serialization/ASTReader.cpp b/lib/Serialization/ASTReader.cpp
index 6fe1b7068e..10eb03087f 100644
--- a/lib/Serialization/ASTReader.cpp
+++ b/lib/Serialization/ASTReader.cpp
@@ -3210,7 +3210,7 @@ ASTReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
DeclContext::lookup_iterator(0));
llvm::SmallVector<NamedDecl *, 64> Decls;
- // There might be lexical decls in multiple parts of the chain, for the TU
+ // There might be visible decls in multiple parts of the chain, for the TU
// and namespaces.
DeclContextInfos &Infos = DeclContextOffsets[DC];
for (DeclContextInfos::iterator I = Infos.begin(), E = Infos.end();