mirror of
https://github.com/Z3Prover/z3
synced 2025-11-22 05:36:41 +00:00
Avoid const params in decls.
Const-qualification of parameters only has an effect in function definitions.
This commit is contained in:
parent
eea9b79035
commit
2016f48dc9
4 changed files with 25 additions and 25 deletions
|
|
@ -148,7 +148,7 @@ namespace datalog {
|
|||
void make_join(reg_idx t1, reg_idx t2, const variable_intersection & vars, reg_idx & result,
|
||||
bool reuse_t1, instruction_block & acc);
|
||||
void make_min(reg_idx source, reg_idx & target, const unsigned_vector & group_by_cols,
|
||||
const unsigned min_col, instruction_block & acc);
|
||||
unsigned min_col, instruction_block & acc);
|
||||
void make_join_project(reg_idx t1, reg_idx t2, const variable_intersection & vars,
|
||||
const unsigned_vector & removed_cols, reg_idx & result, bool reuse_t1, instruction_block & acc);
|
||||
void make_filter_interpreted_and_project(reg_idx src, app_ref & cond,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue