3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 06:15:46 +00:00

fix out of bounds bug

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-01-23 16:12:12 -10:00 committed by Lev Nachmanson
parent 3990df6d91
commit ef55de1646
3 changed files with 10 additions and 9 deletions

View file

@ -80,7 +80,7 @@ public:
void resize(unsigned data_size);
unsigned data_size() const {
return m_data.size();
return static_cast<unsigned>(m_data.size());
}
unsigned size() const {