Skip to content

Commit

Permalink
Annotations to first-class modules for OCaml 3.12
Browse files Browse the repository at this point in the history
OCaml 3.12 does not support inference of the type of first-class
modules.
  • Loading branch information
kerneis committed Jun 30, 2014
1 parent a4bb105 commit 9cbd8ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ext/pta/ptranal.ml
Expand Up @@ -53,7 +53,7 @@ let olf_option =
module type OLF = module type of Olf module type OLF = module type of Olf
module A = module A =
(val (Util.parse_argv_skip_unknown olf_option ignore; (val (Util.parse_argv_skip_unknown olf_option ignore;
if !olf_backend then (module Olf) else (module Golf)): OLF) if !olf_backend then (module Olf : OLF) else (module Golf : OLF)): OLF)


exception UnknownLocation = A.UnknownLocation exception UnknownLocation = A.UnknownLocation


Expand Down

0 comments on commit 9cbd8ae

Please sign in to comment.