mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix initialization order
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5c2f07df09
commit
67bbdc7524
1 changed files with 1 additions and 1 deletions
|
@ -285,8 +285,8 @@ namespace smt {
|
|||
bool pushed = false;
|
||||
struct scoped_level {
|
||||
context& c;
|
||||
unsigned lvl;
|
||||
bool& pushed;
|
||||
unsigned lvl;
|
||||
scoped_level(context& c, bool& pushed):
|
||||
c(c), pushed(pushed), lvl(c.get_scope_level()) {}
|
||||
~scoped_level() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue