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

@@ -183,9 +183,6 @@ public:
/// This state should be tracked somewhere else.
unsigned LastCheckedExternalDefinition = 0;
/// \brief The list of externally-created types that need validation.
std::vector<Type> ExternalTypes;
private:
/// \brief The current generation number, which reflects the number of
/// times that external modules have been loaded.
@@ -336,10 +333,6 @@ public:
/// was just added.
void addedExternalDecl(Decl *decl);
/// \brief Notify all of the mutation listeners that the given type
/// was just added.
void addedExternalType(Type type);
/// Add a cleanup function to be called when the ASTContext is deallocated.
void addCleanup(std::function<void(void)> cleanup);