mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
fixed some warnings reported by clang++
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
ed52dce9b0
commit
c1587dc37d
4 changed files with 9 additions and 1 deletions
|
@ -134,6 +134,10 @@ public:
|
|||
virtual bool reduce_distinct(unsigned num_args, expr * const * args, expr_ref & result);
|
||||
|
||||
virtual bool reduce(func_decl * f, unsigned num_args, rational const * mults, expr * const * args, expr_ref & result);
|
||||
virtual bool reduce(func_decl * f, unsigned num_args, expr * const * args, expr_ref & result) {
|
||||
return simplifier_plugin::reduce(f, num_args, args, result);
|
||||
}
|
||||
|
||||
|
||||
expr * get_monomial_body(expr * m);
|
||||
int get_monomial_body_order(expr * m);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue