mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +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) {
|
Z3Object(Context ctx, long obj) {
|
||||||
m_ctx = ctx;
|
m_ctx = ctx;
|
||||||
checkNativeObject(obj);
|
checkNativeObject(obj);
|
||||||
incRef(obj);
|
|
||||||
m_n_obj = obj;
|
m_n_obj = obj;
|
||||||
|
incRef(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue