Skip to content

Commit 3a10235

Browse files
author
Guillaume Petiot
authored
Remove unused Range constructor (#2483)
1 parent 0212da8 commit 3a10235

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: lib/Conf_decl.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let ocaml_version_conv =
1919
in
2020
(parse, Ocaml_version.pp)
2121

22-
type typ = Int | Bool | Range | Ocaml_version | Choice of string list
22+
type typ = Int | Bool | Ocaml_version | Choice of string list
2323

2424
module UI = struct
2525
type 'config t =

Diff for: lib/Conf_decl.mli

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
- Add a field to one of the records in [Conf_t]
1717
- Declare the option in [Conf], using functions from this module. *)
1818

19-
type typ = Int | Bool | Range | Ocaml_version | Choice of string list
19+
type typ = Int | Bool | Ocaml_version | Choice of string list
2020

2121
module UI : sig
2222
type 'config t =

0 commit comments

Comments
 (0)