Skip to content

Commit ce1f2e1

Browse files
build
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent 16dc278 commit ce1f2e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/c++/z3++.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@ namespace z3 {
17771777
check_context(a, b); Z3_ast r = Z3_mk_bvsdiv_no_overflow(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r);
17781778
}
17791779
inline expr bvneg_no_overflow(expr const& a) {
1780-
Z3_ast r = Z3_mk_bvneg_no_overflow(a.ctx(), a, b); a.check_error(); return expr(a.ctx(), r);
1780+
Z3_ast r = Z3_mk_bvneg_no_overflow(a.ctx(), a); a.check_error(); return expr(a.ctx(), r);
17811781
}
17821782
inline expr bvmul_no_overflow(expr const& a, expr const& b, bool is_signed) {
17831783
check_context(a, b); Z3_ast r = Z3_mk_bvmul_no_overflow(a.ctx(), a, b, is_signed); a.check_error(); return expr(a.ctx(), r);

0 commit comments

Comments
 (0)