aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/taccoerce.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/taccoerce.ml')
-rw-r--r--tactics/taccoerce.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/taccoerce.ml b/tactics/taccoerce.ml
index 06a9ab811..aa254c2f8 100644
--- a/tactics/taccoerce.ml
+++ b/tactics/taccoerce.ml
@@ -64,7 +64,7 @@ let to_list v =
end
let is_variable env id =
- List.mem id (Termops.ids_of_named_context (Environ.named_context env))
+ Id.List.mem id (Termops.ids_of_named_context (Environ.named_context env))
(* Transforms an id into a constr if possible, or fails with Not_found *)
let constr_of_id env id =
@@ -155,7 +155,7 @@ let coerce_to_evaluable_ref env v =
| _ -> fail ()
else if has_type v (topwit wit_var) then
let id = out_gen (topwit wit_var) v in
- if List.mem id (Termops.ids_of_context env) then EvalVarRef id
+ if Id.List.mem id (Termops.ids_of_context env) then EvalVarRef id
else fail ()
else
let ev = match Value.to_constr v with