aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authorMaxime Dénès2017-11-03 11:00:27 +0100
committerMaxime Dénès2017-11-03 11:00:27 +0100
commit96a8d73edaa4eba500c440e5d6869fae1af91a12 (patch)
treea4122ffc69ae991fc0b878af791338a5e91737ce /parsing
parent87f3278ea3520ed2b2a4b355765392550488c1df (diff)
parentc8533911300df8d4897a3109ea30d43be7f430eb (diff)
Merge PR #6051: Fix FIXME: use OCaml 4.02 generative functors when available.
Diffstat (limited to 'parsing')
-rw-r--r--parsing/pcoq.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/parsing/pcoq.ml b/parsing/pcoq.ml
index 3d00b220b8..d34da159ee 100644
--- a/parsing/pcoq.ml
+++ b/parsing/pcoq.ml
@@ -543,11 +543,11 @@ let epsilon_value f e =
(** Synchronized grammar extensions *)
-module GramState = Store.Make(struct end)
+module GramState = Store.Make ()
type 'a grammar_extension = 'a -> GramState.t -> extend_rule list * GramState.t
-module GrammarCommand = Dyn.Make(struct end)
+module GrammarCommand = Dyn.Make ()
module GrammarInterp = struct type 'a t = 'a grammar_extension end
module GrammarInterpMap = GrammarCommand.Map(GrammarInterp)