3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 10:30:44 +00:00

Fix clang compilation issues

This commit is contained in:
Arie Gurfinkel 2018-06-12 13:28:49 -07:00
parent ec8e3f2aee
commit 5e198f4119

View file

@ -33,7 +33,7 @@ namespace qe {
struct def { struct def {
expr_ref var, term; expr_ref var, term;
def(expr_ref& v, expr_ref& t): var(v), term(t) {} def(const expr_ref& v, expr_ref& t): var(v), term(t) {}
}; };
class project_plugin { class project_plugin {