diff options
| author | John McCall <rjmccall@apple.com> | 2010-08-25 10:28:54 +0000 |
|---|---|---|
| committer | John McCall <rjmccall@apple.com> | 2010-08-25 10:28:54 +0000 |
| commit | 2536c6da0ec4db6506f93f5f7d65ac1c17348c77 (patch) | |
| tree | 29819bf87dc6ae5874e44ce9962f04c94bc6f220 /clang/lib/Serialization/ASTReaderStmt.cpp | |
| parent | b50a088122875184c3dfc96337e631e2e854d2f7 (diff) | |
| download | bcm5719-llvm-2536c6da0ec4db6506f93f5f7d65ac1c17348c77.tar.gz bcm5719-llvm-2536c6da0ec4db6506f93f5f7d65ac1c17348c77.zip | |
More incremental progress towards not including Expr.h in Sema.h.
llvm-svn: 112044
Diffstat (limited to 'clang/lib/Serialization/ASTReaderStmt.cpp')
| -rw-r--r-- | clang/lib/Serialization/ASTReaderStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Serialization/ASTReaderStmt.cpp b/clang/lib/Serialization/ASTReaderStmt.cpp index cd1105f3363..ff2d39e6ec7 100644 --- a/clang/lib/Serialization/ASTReaderStmt.cpp +++ b/clang/lib/Serialization/ASTReaderStmt.cpp @@ -598,7 +598,7 @@ void ASTStmtReader::VisitConditionalOperator(ConditionalOperator *E) { void ASTStmtReader::VisitImplicitCastExpr(ImplicitCastExpr *E) { VisitCastExpr(E); - E->setCategory(static_cast<ImplicitCastExpr::ResultCategory>(Record[Idx++])); + E->setValueKind(static_cast<ExprValueKind>(Record[Idx++])); } void ASTStmtReader::VisitExplicitCastExpr(ExplicitCastExpr *E) { |

