diff options
author | Gabor Greif <ggreif@gmail.com> | 2009-02-19 09:27:40 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2009-02-19 09:27:40 +0000 |
commit | 4b5d486a0a2cb535d8c7e3f5c258eb3cba8cad29 (patch) | |
tree | 8e1b9b71cae38348943ef497175a0bb9247901b3 | |
parent | 131eb438d8c216b2e2a4f8fa8158ea88b787dc14 (diff) |
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65040 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index c47b94053e..6da1027453 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -475,7 +475,7 @@ protected: /// be serialized. // FIXME: Make this abstract once implemented. virtual void EmitImpl(llvm::Serializer& S) const { - assert(false && "Serializization for type not supported."); + assert(false && "Serialization for type not supported."); } }; |