aboutsummaryrefslogtreecommitdiffstats
path: root/src/trace/smtForm.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/trace/smtForm.ml')
-rw-r--r--src/trace/smtForm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trace/smtForm.ml b/src/trace/smtForm.ml
index 4138e7c..ad6a5a4 100644
--- a/src/trace/smtForm.ml
+++ b/src/trace/smtForm.ml
@@ -618,7 +618,7 @@ module Make (Atom:ATOM) =
mklApp cifb (Array.map interp_form args)
| Fnot2 n ->
(let r = ref (interp_form args.(0)) in
- for i = 1 to n do
+ for _ = 1 to n do
r := mklApp cnegb [|!r|]
done;
!r)