3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-29 23:43:15 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-10-06 16:13:23 -07:00
parent aad09816cb
commit f14a2b9a7c

View file

@ -1982,7 +1982,7 @@ public class Context implements AutoCloseable {
*/ */
public SeqExpr intToString(Expr e) public SeqExpr intToString(Expr e)
{ {
return (SeqExpr) Expr.create(this, Native.Z3_mkIntToStr(nCtx(), e.getNativeObject())); return (SeqExpr) Expr.create(this, Native.mkIntToStr(nCtx(), e.getNativeObject()));
} }
/** /**