diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-10-14 16:55:17 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-10-14 16:55:17 +0000 |
commit | 708ef456a182030de3cf20ad98e653d2741ecb13 (patch) | |
tree | 083ea312b169bdd1db4e942e38cad0f8151edcb9 /lib/AST/TypeSerialization.cpp | |
parent | b8b10e3fef0045d8db3348bc5fffc10cdf934eb7 (diff) |
Move Type::EmitImpl into header, add FIXME to make abstract.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57501 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/TypeSerialization.cpp')
-rw-r--r-- | lib/AST/TypeSerialization.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/AST/TypeSerialization.cpp b/lib/AST/TypeSerialization.cpp index 9674726855..ff784ccc27 100644 --- a/lib/AST/TypeSerialization.cpp +++ b/lib/AST/TypeSerialization.cpp @@ -53,10 +53,6 @@ void Type::Emit(Serializer& S) const { EmitImpl(S); } -void Type::EmitImpl(Serializer& S) const { - assert (false && "Serializization for type not supported."); -} - void Type::Create(ASTContext& Context, unsigned i, Deserializer& D) { Type::TypeClass K = static_cast<Type::TypeClass>(D.ReadInt()); SerializedPtrID PtrID = D.ReadPtrID(); |