3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

updated seq

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-12-21 06:07:50 -08:00
parent 8e26c97782
commit 65da0f9f3a
2 changed files with 9 additions and 12 deletions

View file

@ -110,7 +110,7 @@ public:
void erase_and_swap(unsigned i) {
if (i + 1 < size()) {
set(i, m_elems[m_index[i]]);
set(i, m_elems[m_index[size()-1]]);
}
pop_back();
}