mirror of
https://github.com/Z3Prover/z3
synced 2025-06-16 02:46:16 +00:00
call it data instead of c_ptr for approaching C++11 std::vector convention.
This commit is contained in:
parent
524dcd35f9
commit
4a6083836a
456 changed files with 2802 additions and 2802 deletions
|
@ -163,7 +163,7 @@ namespace {
|
|||
}
|
||||
for (unsigned i = 0; i < terms.size(); ++i) {
|
||||
args[0] = terms[i].term;
|
||||
terms[i].term = m.mk_app(m_array_util.get_family_id(), OP_SELECT, 0, nullptr, args.size(), args.c_ptr());
|
||||
terms[i].term = m.mk_app(m_array_util.get_family_id(), OP_SELECT, 0, nullptr, args.size(), args.data());
|
||||
}
|
||||
assert_relevant(terms);
|
||||
VERIFY(m_solver.check_sat(0,nullptr) != l_false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue