diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-22 06:50:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-22 06:50:37 +0000 |
commit | 068360e16fa4504a6fb80affebae5c5713629a96 (patch) | |
tree | 73965a02401f27ee14a26f869428000beed5cd59 /lib/Frontend/PCHWriter.cpp | |
parent | c6fa4450b827d1e3674494fc9659eae006a86b49 (diff) |
ObjCQualifiedClass is dead, remove it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69783 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | lib/Frontend/PCHWriter.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Frontend/PCHWriter.cpp b/lib/Frontend/PCHWriter.cpp index 760578164b..f34323c160 100644 --- a/lib/Frontend/PCHWriter.cpp +++ b/lib/Frontend/PCHWriter.cpp @@ -228,14 +228,6 @@ void PCHTypeWriter::VisitObjCQualifiedIdType(const ObjCQualifiedIdType *T) { Code = pch::TYPE_OBJC_QUALIFIED_ID; } -void -PCHTypeWriter::VisitObjCQualifiedClassType(const ObjCQualifiedClassType *T) { - Record.push_back(T->getNumProtocols()); - for (unsigned I = 0, N = T->getNumProtocols(); I != N; ++I) - Writer.AddDeclRef(T->getProtocols(I), Record); - Code = pch::TYPE_OBJC_QUALIFIED_CLASS; -} - //===----------------------------------------------------------------------===// // Declaration serialization //===----------------------------------------------------------------------===// |