Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions c2rust-ast-exporter/src/AstExporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,8 @@ class TranslateASTVisitor final
Expr::EvalResult eval_result;
#endif // CLANG_VERSION_MAJOR
bool hasValue = E->EvaluateAsInt(eval_result, *Context);
if (!hasValue)
return false;
#if CLANG_VERSION_MAJOR < 8
constant = eval_result;
#else
Expand Down