aboutsummaryrefslogtreecommitdiff
path: root/tactics/tacinterp.ml
diff options
context:
space:
mode:
authorppedrot2012-12-14 11:05:35 +0000
committerppedrot2012-12-14 11:05:35 +0000
commitd9f9673d90371ead668863221c1202de49ab1782 (patch)
tree3fca5420ce4404972f87ea05d2000e3fd8e89017 /tactics/tacinterp.ml
parent9a0c61b81a2d9c0024b20a6c7ad8af01026739b0 (diff)
Moved Stringset and Stringmap to String namespace.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16068 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/tacinterp.ml')
-rw-r--r--tactics/tacinterp.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml
index 0cfb4bb970..3f7cbb6254 100644
--- a/tactics/tacinterp.ml
+++ b/tactics/tacinterp.ml
@@ -137,11 +137,11 @@ type interp_genarg_type =
Evd.evar_map * typed_generic_argument
let extragenargtab =
- ref (Stringmap.empty : interp_genarg_type Stringmap.t)
+ ref (String.Map.empty : interp_genarg_type String.Map.t)
let add_interp_genarg id f =
- extragenargtab := Stringmap.add id f !extragenargtab
+ extragenargtab := String.Map.add id f !extragenargtab
let lookup_interp_genarg id =
- try Stringmap.find id !extragenargtab
+ try String.Map.find id !extragenargtab
with Not_found ->
let msg = "No interpretation function found for entry " ^ id in
msg_warning (strbrk msg);