Oops, context -> ctx

This commit is contained in:
Luke Street 2021-05-01 08:35:43 -04:00
parent 7a2a8a79ca
commit 11b86d7634
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ static inline bool GetIntegerConstantExpr(const clang::Expr* expr, llvm::APSInt&
} }
#else #else
static inline bool GetIntegerConstantExpr(const clang::Expr* expr, llvm::APSInt& out, const clang::ASTContext& ctx) { static inline bool GetIntegerConstantExpr(const clang::Expr* expr, llvm::APSInt& out, const clang::ASTContext& ctx) {
return expr->isIntegerConstantExpr(out, context); return expr->isIntegerConstantExpr(out, ctx);
} }
#endif #endif