mirror of
https://github.com/Z3Prover/z3
synced 2025-12-03 10:39:07 +00:00
fix type for BoolPtr
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
eecd052730
commit
15274cdf53
1 changed files with 1 additions and 1 deletions
|
|
@ -625,7 +625,7 @@ def mk_java(java_src, java_dir, package_name):
|
|||
java_native.write(' public static class StringPtr { public String value; }\n')
|
||||
java_native.write(' public static class ObjArrayPtr { public long[] value; }\n')
|
||||
java_native.write(' public static class UIntArrayPtr { public int[] value; }\n')
|
||||
java_native.write(' public static class BoolPtr { public boolean[] value; }\n')
|
||||
java_native.write(' public static class BoolPtr { public boolean value; }\n')
|
||||
java_native.write(' public static native void setInternalErrorHandler(long ctx);\n\n')
|
||||
|
||||
java_native.write(' static {\n')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue