Remove ASTMutationListener::addedExternalType(). It's useless now.

Swift SVN r8491
This commit is contained in:
Doug Gregor
2013-09-20 15:15:19 +00:00
parent 6dad378b32
commit 40cf8d1bbc
7 changed files with 1 additions and 32 deletions

View File

@@ -541,11 +541,6 @@ void ASTContext::addedExternalDecl(Decl *decl) {
listener->addedExternalDecl(decl);
}
void ASTContext::addedExternalType(Type type) {
for (auto listener : Impl.MutationListeners)
listener->addedExternalType(type);
}
void ASTContext::addCleanup(std::function<void(void)> cleanup) {
Impl.Cleanups.push_back(std::move(cleanup));
}