aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/evd.ml
diff options
context:
space:
mode:
Diffstat (limited to 'pretyping/evd.ml')
-rw-r--r--pretyping/evd.ml4
1 files changed, 0 insertions, 4 deletions
diff --git a/pretyping/evd.ml b/pretyping/evd.ml
index 1394f3ba8..cc6bd6150 100644
--- a/pretyping/evd.ml
+++ b/pretyping/evd.ml
@@ -672,10 +672,6 @@ let retract_coercible_metas evd =
evd.metas ([],Metamap.empty) in
mc, { evd with metas = ml }
-let rec list_assoc_in_triple x = function
- [] -> raise Not_found
- | (a,b,_)::l -> if compare a x = 0 then b else list_assoc_in_triple x l
-
let subst_defined_metas bl c =
let rec substrec c = match kind_of_term c with
| Meta i -> substrec (List.assoc_snd_in_triple i bl)