aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/mod_subst.ml
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-09-24 13:14:17 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-09-24 13:14:17 +0000
commitc789e243ff599db876e94a5ab2a13ff98baa0d6c (patch)
tree6dffe51299d60f2fb9ad8fa0a90c5b8a2cd119d9 /kernel/mod_subst.ml
parent61222d6bfb2fddd8608bea4056af2e9541819510 (diff)
Some dead code removal, thanks to Oug analyzer
In particular, the unused lib/tlm.ml and lib/gset.ml are removed In addition, to simplify code, Libobject.record_object returning only the ('a->obj) function, which is enough almost all the time. Use Libobject.record_object_full if you really need also the (obj->'a). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13460 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/mod_subst.ml')
-rw-r--r--kernel/mod_subst.ml15
1 files changed, 0 insertions, 15 deletions
diff --git a/kernel/mod_subst.ml b/kernel/mod_subst.ml
index 8b11aa185..452c2e69a 100644
--- a/kernel/mod_subst.ml
+++ b/kernel/mod_subst.ml
@@ -54,11 +54,6 @@ type substitution = (module_path * delta_resolver) Umap.t
let empty_subst = Umap.empty
-
-let string_of_subst_domain = function
- | MBI mbid -> debug_string_of_mbid mbid
- | MPI mp -> string_of_mp mp
-
let add_mbid mbid mp resolve =
Umap.add (MBI mbid) (mp,resolve)
let add_mp mp1 mp2 resolve =
@@ -109,16 +104,6 @@ let delta_of_mp resolve mp =
| _ -> anomaly "mod_subst: bad association in delta_resolver"
with
Not_found -> mp
-
-let delta_of_kn resolve kn =
- try
- match Deltamap.find (KN kn) resolve with
- | Equiv kn1 -> kn1
- | Inline _ -> kn
- | _ -> anomaly
- "mod_subst: bad association in delta_resolver"
- with
- Not_found -> kn
let remove_mp_delta_resolver resolver mp =
Deltamap.remove (MP mp) resolver