mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +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
|
@ -102,7 +102,7 @@ class lackr {
|
|||
//
|
||||
// Introduce congruence ackermann lemma for the two given terms.
|
||||
//
|
||||
bool ackr(app * const t1, app * const t2);
|
||||
bool ackr(app * t1, app * t2);
|
||||
|
||||
//
|
||||
// Introduce the ackermann lemma for each pair of terms.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue