From c8533911300df8d4897a3109ea30d43be7f430eb Mon Sep 17 00:00:00 2001 From: Gaƫtan Gilbert Date: Wed, 1 Nov 2017 15:01:37 +0100 Subject: Fix FIXME: use OCaml 4.02 generative functors when available. 4.02.3 has been the minimal OCaml version for a while now. --- parsing/pcoq.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'parsing') 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) -- cgit v1.2.3