aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclObjC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/AST/DeclObjC.cpp')
-rw-r--r--lib/AST/DeclObjC.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/AST/DeclObjC.cpp b/lib/AST/DeclObjC.cpp
index b0aeabf68f..6a3bdfd4bb 100644
--- a/lib/AST/DeclObjC.cpp
+++ b/lib/AST/DeclObjC.cpp
@@ -245,9 +245,6 @@ void ObjCInterfaceDecl::startDefinition() {
if (*RD != this)
RD->Data = Data;
}
-
- if (ASTMutationListener *L = getASTContext().getASTMutationListener())
- L->CompletedObjCForwardRef(this);
}
/// getFirstClassExtension - Find first class extension of the given class.
@@ -1058,9 +1055,6 @@ void ObjCProtocolDecl::startDefinition() {
for (redecl_iterator RD = redecls_begin(), RDEnd = redecls_end();
RD != RDEnd; ++RD)
RD->Data = this->Data;
-
- if (ASTMutationListener *L = getASTContext().getASTMutationListener())
- L->CompletedObjCForwardRef(this);
}
//===----------------------------------------------------------------------===//