aboutsummaryrefslogtreecommitdiffhomepage
path: root/interp/reserve.ml
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-08-03 18:35:03 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-08-03 18:35:03 +0000
commit2b8ad61822111fad93176b54800cb43e347df292 (patch)
tree9a4668cc5533d355a69c3f6583658ee9e342c66b /interp/reserve.ml
parenteb4bdf9317ad53f464a87219c1625b9118d4660a (diff)
Replacing uses of association lists by maps in notations.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16655 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'interp/reserve.ml')
-rw-r--r--interp/reserve.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/interp/reserve.ml b/interp/reserve.ml
index 0ab7ec6c7..12c3dcbba 100644
--- a/interp/reserve.ml
+++ b/interp/reserve.ml
@@ -112,7 +112,7 @@ let anonymize_if_reserved na t = match na with
(try
if not !Flags.raw_print &&
(try
- let ntn = notation_constr_of_glob_constr [] [] t in
+ let ntn = notation_constr_of_glob_constr Id.Map.empty Id.Map.empty t in
Pervasives.(=) ntn (find_reserved_type id) (** FIXME *)
with UserError _ -> false)
then GHole (Loc.ghost,Evar_kinds.BinderType na)