diff options
| author | Maxime Dénès | 2017-11-03 11:00:27 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-11-03 11:00:27 +0100 |
| commit | 96a8d73edaa4eba500c440e5d6869fae1af91a12 (patch) | |
| tree | a4122ffc69ae991fc0b878af791338a5e91737ce /library | |
| parent | 87f3278ea3520ed2b2a4b355765392550488c1df (diff) | |
| parent | c8533911300df8d4897a3109ea30d43be7f430eb (diff) | |
Merge PR #6051: Fix FIXME: use OCaml 4.02 generative functors when available.
Diffstat (limited to 'library')
| -rw-r--r-- | library/libobject.ml | 2 | ||||
| -rw-r--r-- | library/summary.ml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/libobject.ml b/library/libobject.ml index 013c6fa0a5..0c11be9abb 100644 --- a/library/libobject.ml +++ b/library/libobject.ml @@ -9,7 +9,7 @@ open Libnames open Pp -module Dyn = Dyn.Make(struct end) +module Dyn = Dyn.Make () type 'a substitutivity = Dispose | Substitute of 'a | Keep of 'a | Anticipate of 'a diff --git a/library/summary.ml b/library/summary.ml index 69eff830da..9f49d1f839 100644 --- a/library/summary.ml +++ b/library/summary.ml @@ -10,7 +10,7 @@ open Pp open CErrors open Util -module Dyn = Dyn.Make(struct end) +module Dyn = Dyn.Make () type marshallable = [ `Yes | `No | `Shallow ] type 'a summary_declaration = { |
