mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 20:38:43 +00:00
Bugfix for incorrect order of operations.
This commit is contained in:
parent
495ef0f055
commit
5657399d55
|
@ -29,8 +29,8 @@ public abstract class Z3Object {
|
|||
Z3Object(Context ctx, long obj) {
|
||||
m_ctx = ctx;
|
||||
checkNativeObject(obj);
|
||||
incRef(obj);
|
||||
m_n_obj = obj;
|
||||
incRef(obj);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue