mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
compiler warning by daniel j h
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
459e456f66
commit
7768aa5487
|
@ -523,7 +523,7 @@ public:
|
|||
/**
|
||||
The ids of expressions and declarations are in different ranges.
|
||||
*/
|
||||
const unsigned c_first_decl_id = (1 << 31);
|
||||
const unsigned c_first_decl_id = (1u << 31u);
|
||||
|
||||
/**
|
||||
\brief Superclass for function declarations and sorts.
|
||||
|
|
|
@ -350,7 +350,7 @@ namespace datalog {
|
|||
*ptr&=m_write_mask;
|
||||
*ptr|=val<<m_small_offset;
|
||||
}
|
||||
unsigned const next_ofs() const { return m_offset+m_length; }
|
||||
unsigned next_ofs() const { return m_offset+m_length; }
|
||||
};
|
||||
class column_layout : public svector<column_info> {
|
||||
|
||||
|
|
Loading…
Reference in a new issue