aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/rewrite.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/rewrite.ml')
-rw-r--r--tactics/rewrite.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/tactics/rewrite.ml b/tactics/rewrite.ml
index 327739378..eb7b28690 100644
--- a/tactics/rewrite.ml
+++ b/tactics/rewrite.ml
@@ -634,7 +634,9 @@ let eq_env x y = x == y
let apply_rule by loccs : (hypinfo * int) pure_strategy =
let (nowhere_except_in,occs) = convert_occs loccs in
let is_occ occ =
- if nowhere_except_in then List.mem occ occs else not (List.mem occ occs) in
+ if nowhere_except_in
+ then Int.List.mem occ occs
+ else not (Int.List.mem occ occs) in
fun (hypinfo, occ) env avoid t ty cstr evars ->
let hypinfo =
if not (eq_env hypinfo.cl.env env) then