mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +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 {
|
||||
return m_num_bits != 0;
|
||||
return m_num_bits == 0;
|
||||
}
|
||||
|
||||
unsigned num_words() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue