mirror of
https://github.com/Z3Prover/z3
synced 2026-02-02 15:26:17 +00:00
constify a constant
shrinks binary size by 4KB
This commit is contained in:
parent
7edc4e088a
commit
70a03c7784
2 changed files with 3 additions and 9 deletions
|
|
@ -133,13 +133,6 @@ mpz_manager<SYNCH>::mpz_manager():
|
|||
m_allocator("mpz_manager") {
|
||||
|
||||
#ifndef _MP_GMP
|
||||
if (sizeof(digit_t) == sizeof(uint64_t)) {
|
||||
// 64-bit machine
|
||||
m_init_cell_capacity = 4;
|
||||
}
|
||||
else {
|
||||
m_init_cell_capacity = 6;
|
||||
}
|
||||
set(m_int_min, -static_cast<int64_t>(INT_MIN));
|
||||
#else
|
||||
// GMP
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue