Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbin committed Oct 26, 2024
1 parent 26cf2fa commit 8a0904e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,24 @@
(public_name provider)
(flags :standard -w +a-4-40-41-42-44-45-48-66 -warn-error +a -open Sexplib0)
(libraries sexplib0)
(modules (:standard \ uid4xx uid5xx))
(modules
(:standard \ uid4xx uid5xx))
(instrumentation
(backend bisect_ppx))
(lint
(pps ppx_js_style -check-doc-comments))
(preprocess no_preprocessing))

(rule
(enabled_if (< %{ocaml_version} 5.0))
(enabled_if
(< %{ocaml_version} 5.0))
(target selecteduid.ml)
(action (copy uid4xx.ml %{target})))
(action
(copy uid4xx.ml %{target})))

(rule
(enabled_if (>= %{ocaml_version} 5.0))
(enabled_if
(>= %{ocaml_version} 5.0))
(target selecteduid.ml)
(action (copy uid5xx.ml %{target})))
(action
(copy uid5xx.ml %{target})))
1 change: 1 addition & 0 deletions src/selecteduid.mli
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
type t = int

val sexp_of_t : t -> Sexp.t
val equal : t -> t -> bool
val compare : t -> t -> int
Expand Down

0 comments on commit 8a0904e

Please sign in to comment.