commit | 5baba9d98364a3525d6afa15a04cdad82fd6dd30 | [log] [tgz] |
---|---|---|
author | John McCall <rjmccall@apple.com> | Wed Aug 25 10:28:54 2010 +0000 |
committer | John McCall <rjmccall@apple.com> | Wed Aug 25 10:28:54 2010 +0000 |
tree | fa5f362a24e847c0853cb792239948880e89f96c | |
parent | f869d205c5985121b8134a9174ed8d3b136637b5 [diff] [blame] |
More incremental progress towards not including Expr.h in Sema.h. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112044 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Serialization/ASTWriterStmt.cpp b/lib/Serialization/ASTWriterStmt.cpp index 1bb9d19..4bde550 100644 --- a/lib/Serialization/ASTWriterStmt.cpp +++ b/lib/Serialization/ASTWriterStmt.cpp
@@ -605,7 +605,7 @@ void ASTStmtWriter::VisitImplicitCastExpr(ImplicitCastExpr *E) { VisitCastExpr(E); - Record.push_back(E->getCategory()); + Record.push_back(E->getValueKind()); Code = serialization::EXPR_IMPLICIT_CAST; }