mirror of
https://github.com/Z3Prover/z3
synced 2025-06-14 09:56:15 +00:00
fix missing else reported in #855
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
46df31babf
commit
c44dd01292
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ struct z3_replayer::imp {
|
||||||
v.push_back(static_cast<unsigned>(m_args[i].m_uint));
|
v.push_back(static_cast<unsigned>(m_args[i].m_uint));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (k == INT64) {
|
else if (k == INT64) {
|
||||||
aidx = m_int_arrays.size();
|
aidx = m_int_arrays.size();
|
||||||
nk = INT_ARRAY;
|
nk = INT_ARRAY;
|
||||||
m_int_arrays.push_back(svector<int>());
|
m_int_arrays.push_back(svector<int>());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue