Skip to content

Commit

Permalink
disambiguate overloaded with for Julia bindings
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Feb 1, 2023
1 parent 4c6d44f commit 162fa3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/julia/z3jl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ JLCXX_MODULE define_julia_module(jlcxx::Module &m)
m.BINARY_OP(tactic, &, &);
m.BINARY_OP(tactic, |, |);
m.method("repeat", &repeat);
m.method("with", &with);
m.method("with", static_cast<tactic (*)(const tactic & , const params &)>(&with));
m.method("try_for", &try_for);
m.method("par_or", &par_or);
m.method("par_and_then", &par_and_then);
Expand Down

0 comments on commit 162fa3d

Please sign in to comment.