mirror of
https://github.com/Z3Prover/z3
synced 2026-02-20 07:24:40 +00:00
Fixed various signed/unsigned conversion warnings.
This commit is contained in:
parent
f1cc1842e1
commit
4da7286a7b
2 changed files with 5 additions and 5 deletions
|
|
@ -79,7 +79,7 @@ namespace simplex {
|
|||
};
|
||||
col_entry(int r, int i): m_row_id(r), m_row_idx(i) {}
|
||||
col_entry(): m_row_id(0), m_row_idx(0) {}
|
||||
bool is_dead() const { return m_row_id == dead_id; }
|
||||
bool is_dead() const { return (unsigned) m_row_id == dead_id; }
|
||||
};
|
||||
|
||||
struct column;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue