3
0
Fork 0
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:
Bruce Mitchener 2018-11-28 19:07:33 +07:00
parent eea9b79035
commit 2016f48dc9
4 changed files with 25 additions and 25 deletions

View file

@ -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.