3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

[c++ api] add const (#5195)

This commit is contained in:
Zachary Wimer 2021-04-19 02:24:12 -07:00 committed by GitHub
parent e67b9ebcf7
commit f8228ff50e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1297,7 +1297,7 @@ namespace z3 {
check_error();
return expr(ctx(), r);
}
expr contains(expr const& s) {
expr contains(expr const& s) const {
check_context(*this, s);
Z3_ast r = Z3_mk_seq_contains(ctx(), *this, s);
check_error();