Skip to content

Commit

Permalink
Merge pull request #196 from dra27/4.14.1
Browse files Browse the repository at this point in the history
Fix accidental regression in 4.14.1 Clflags
  • Loading branch information
akabe authored Jan 22, 2023
2 parents 5f19087 + e1afa58 commit 54eed0a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/repl/caml_args.cppo.ml
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,10 @@ module Options = Main_args.Make_bytetop_options (struct
let _dno_locations = clear Clflags.locations
#endif

#if OCAML_VERSION >= (4,14,0)
#if OCAML_VERSION = (4,14,0)
let _force_tmc = set Clflags.force_tmc
#endif
#if OCAML_VERSION >= (4,14,0)
let _dshape = set Clflags.dump_shape
let _eval (_ : string) = ()
#endif
Expand Down

0 comments on commit 54eed0a

Please sign in to comment.