3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

java build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-05-08 10:20:32 -07:00
parent a71ce54c34
commit d58de2f8e4
2 changed files with 2 additions and 3 deletions

View file

@ -418,7 +418,7 @@ def mk_dotnet(dotnet):
if "*" in sig or "*" in ret:
continue
dotnet.write(' [UnmanagedFunctionPointer(CallingConvention.Cdecl)]\n')
dotnet.write(f" public delegate {ret} {name}({sig});\n")
dotnet.write(' public delegate %s %s(%s);\n' % (ret,name,sig))
dotnet.write(' public class LIB\n')
dotnet.write(' {\n')

View file

@ -597,9 +597,8 @@ opt_wrapper* cmd_context::get_opt() {
void cmd_context::set_opt(opt_wrapper* opt) {
m_opt = opt;
for (unsigned i = 0; i < m_scopes.size(); ++i) {
for (unsigned i = 0; i < m_scopes.size(); ++i)
m_opt->push();
}
m_opt->set_logic(m_logic);
}