mirror of
https://github.com/Z3Prover/z3
synced 2025-07-27 06:27:56 +00:00
fix definition of bit_vector::empty()
Signed-off-by: Nuno Lopes <t-nclaud@microsoft.com>
This commit is contained in:
parent
fed2ad2300
commit
b8598225bf
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
bool empty() const {
|
bool empty() const {
|
||||||
return m_num_bits != 0;
|
return m_num_bits == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned num_words() const {
|
unsigned num_words() const {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue