3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 00:05:46 +00:00

mk_not: fix clang compilation issue

This commit is contained in:
Arie Gurfinkel 2018-06-11 11:11:44 -07:00
parent 9a0406d181
commit dda65fdd2e
2 changed files with 13 additions and 14 deletions

View file

@ -127,7 +127,7 @@ inline expr_ref mk_or(expr_ref_vector const& args) { return expr_ref(mk_or(args.
*/
expr * mk_not(ast_manager & m, expr * arg);
expr_ref mk_not(expr_ref& e);
expr_ref mk_not(const expr_ref& e);
/**
Negate and push over conjunction or disjunction.
@ -162,4 +162,3 @@ void flatten_or(expr* fml, expr_ref_vector& result);
#endif /* AST_UTIL_H_ */