Skip to content

Commit

Permalink
seq
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro committed Nov 3, 2024
1 parent 19a8f2e commit 1999f3c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vendored-omp/src/caml_format_doc.cppo.ml
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,9 @@ let pp_print_list ?(pp_sep=pp_print_cut) elt ppf l =

let pp_print_array ?pp_sep elt ppf a =
pp_print_iter ?pp_sep Array.iter elt ppf a
#if OCAML_VERSION >= (4,07,0)
let pp_print_seq ?pp_sep elt ppf s = pp_print_iter ?pp_sep Seq.iter elt ppf s
#endif

let pp_print_option ?(none=fun _ () -> ()) elt ppf o =
ppf := Doc.option ~none:(doc_printer none ()) (doc_printer elt) o !ppf
Expand Down

0 comments on commit 1999f3c

Please sign in to comment.