3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-11 11:24:31 +00:00

fix remaining incorrect uses of new BoolExpr related to #2125

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-02-07 12:28:17 -08:00
parent 77942a35dc
commit d2a3b53d92
5 changed files with 6 additions and 6 deletions

View file

@ -148,7 +148,7 @@ namespace Microsoft.Z3
get
{
return new BoolExpr(Context, Native.Z3_get_quantifier_body(Context.nCtx, NativeObject));
return (BoolExpr)Expr.Create(Context, Native.Z3_get_quantifier_body(Context.nCtx, NativeObject));
}
}