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:
parent
3990df6d91
commit
ef55de1646
3 changed files with 10 additions and 9 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue