mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
java build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a71ce54c34
commit
d58de2f8e4
|
@ -418,7 +418,7 @@ def mk_dotnet(dotnet):
|
||||||
if "*" in sig or "*" in ret:
|
if "*" in sig or "*" in ret:
|
||||||
continue
|
continue
|
||||||
dotnet.write(' [UnmanagedFunctionPointer(CallingConvention.Cdecl)]\n')
|
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(' public class LIB\n')
|
||||||
dotnet.write(' {\n')
|
dotnet.write(' {\n')
|
||||||
|
|
|
@ -597,9 +597,8 @@ opt_wrapper* cmd_context::get_opt() {
|
||||||
|
|
||||||
void cmd_context::set_opt(opt_wrapper* opt) {
|
void cmd_context::set_opt(opt_wrapper* opt) {
|
||||||
m_opt = 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->push();
|
||||||
}
|
|
||||||
m_opt->set_logic(m_logic);
|
m_opt->set_logic(m_logic);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue