3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

compiler warning by daniel j h

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-10-04 10:35:48 -07:00
parent 459e456f66
commit 7768aa5487
2 changed files with 2 additions and 2 deletions

View file

@ -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> {