mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
assorted compiler warnings fixes
Signed-off-by: Nuno Lopes <a-nlopes@microsoft.com>
This commit is contained in:
parent
5f59dd1644
commit
97a5e6d326
6 changed files with 18 additions and 20 deletions
|
@ -43,8 +43,7 @@ mpff_manager::mpff_manager(unsigned prec, unsigned initial_capacity) {
|
|||
for (unsigned i = 0; i < MPFF_NUM_BUFFERS; i++)
|
||||
m_buffers[i].resize(2 * prec, 0);
|
||||
// Reserve space for zero
|
||||
unsigned zero_sig_idx = m_id_gen.mk();
|
||||
SASSERT(zero_sig_idx == 0);
|
||||
VERIFY(m_id_gen.mk() == 0);
|
||||
set(m_one, 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue