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 | 837707e52ad2496ff5c3b959a456da397e4b5269 (patch) | |
tree | 5c4d1e91099ff6c7939aa3f73ef553bb5e0e6279 | |
parent | 82d8f120ec1300f4c5e8264f96b74676759d47f9 (diff) | |
download | bcm5719-llvm-837707e52ad2496ff5c3b959a456da397e4b5269.tar.gz bcm5719-llvm-837707e52ad2496ff5c3b959a456da397e4b5269.zip |
fix typo
llvm-svn: 65040
-rw-r--r-- | clang/include/clang/AST/Type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/Type.h b/clang/include/clang/AST/Type.h index c47b94053eb..6da10274532 100644 --- a/clang/include/clang/AST/Type.h +++ b/clang/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."); } }; |