mirror of
https://github.com/Z3Prover/z3
synced 2025-06-29 09:28:45 +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
|
@ -109,7 +109,7 @@ namespace seq {
|
|||
if (m_trail.size() != 4000)
|
||||
return;
|
||||
unsigned new_size = 2000;
|
||||
expr_ref_vector new_trail(m, new_size, m_trail.c_ptr() + new_size);
|
||||
expr_ref_vector new_trail(m, new_size, m_trail.data() + new_size);
|
||||
m_purified.reset();
|
||||
for (unsigned i = 0; i < new_size; i += 2)
|
||||
m_purified.insert(new_trail.get(i), new_trail.get(i + 1));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue