summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/MultiplexExternalSemaSource.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2013-01-10 23:43:47 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2013-01-10 23:43:47 +0000
commit78165b53bf6ae8f0fc60f2648028f4ebc4556817 (patch)
tree8de7ca8a848b6bb03ac026ac74de6f43407d4e02 /clang/lib/Sema/MultiplexExternalSemaSource.cpp
parent4d21fa05f7c228d3f5c83fce9472d72994333559 (diff)
downloadbcm5719-llvm-78165b53bf6ae8f0fc60f2648028f4ebc4556817.tar.gz
bcm5719-llvm-78165b53bf6ae8f0fc60f2648028f4ebc4556817.zip
Truth in advertising: LocallyScopedExternalDecls actually only contains
external declarations with C language linkage. llvm-svn: 172150
Diffstat (limited to 'clang/lib/Sema/MultiplexExternalSemaSource.cpp')
-rw-r--r--clang/lib/Sema/MultiplexExternalSemaSource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/MultiplexExternalSemaSource.cpp b/clang/lib/Sema/MultiplexExternalSemaSource.cpp
index dca0a3549d0..bee69c46e59 100644
--- a/clang/lib/Sema/MultiplexExternalSemaSource.cpp
+++ b/clang/lib/Sema/MultiplexExternalSemaSource.cpp
@@ -238,10 +238,10 @@ void MultiplexExternalSemaSource::ReadDynamicClasses(
Sources[i]->ReadDynamicClasses(Decls);
}
-void MultiplexExternalSemaSource::ReadLocallyScopedExternalDecls(
+void MultiplexExternalSemaSource::ReadLocallyScopedExternCDecls(
SmallVectorImpl<NamedDecl*> &Decls) {
for(size_t i = 0; i < Sources.size(); ++i)
- Sources[i]->ReadLocallyScopedExternalDecls(Decls);
+ Sources[i]->ReadLocallyScopedExternCDecls(Decls);
}
void MultiplexExternalSemaSource::ReadReferencedSelectors(
OpenPOWER on IntegriCloud