aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Sema/MultiplexExternalSemaSource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/Sema/MultiplexExternalSemaSource.cpp')
-rw-r--r--clang/lib/Sema/MultiplexExternalSemaSource.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/clang/lib/Sema/MultiplexExternalSemaSource.cpp b/clang/lib/Sema/MultiplexExternalSemaSource.cpp
index 5494426..cd44483 100644
--- a/clang/lib/Sema/MultiplexExternalSemaSource.cpp
+++ b/clang/lib/Sema/MultiplexExternalSemaSource.cpp
@@ -115,23 +115,6 @@ FindExternalVisibleDeclsByName(const DeclContext *DC, DeclarationName Name) {
return AnyDeclsFound;
}
-bool MultiplexExternalSemaSource::LoadExternalSpecializations(
- const Decl *D, bool OnlyPartial) {
- bool Loaded = false;
- for (size_t i = 0; i < Sources.size(); ++i)
- Loaded |= Sources[i]->LoadExternalSpecializations(D, OnlyPartial);
- return Loaded;
-}
-
-bool MultiplexExternalSemaSource::LoadExternalSpecializations(
- const Decl *D, ArrayRef<TemplateArgument> TemplateArgs) {
- bool AnyNewSpecsLoaded = false;
- for (size_t i = 0; i < Sources.size(); ++i)
- AnyNewSpecsLoaded |=
- Sources[i]->LoadExternalSpecializations(D, TemplateArgs);
- return AnyNewSpecsLoaded;
-}
-
void MultiplexExternalSemaSource::completeVisibleDeclsMap(const DeclContext *DC){
for(size_t i = 0; i < Sources.size(); ++i)
Sources[i]->completeVisibleDeclsMap(DC);