3
0
Fork 0
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:
Nuno Lopes 2013-03-18 09:20:25 -07:00
parent fed2ad2300
commit b8598225bf

View file

@ -106,7 +106,7 @@ public:
}
bool empty() const {
return m_num_bits != 0;
return m_num_bits == 0;
}
unsigned num_words() const {