Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro committed Nov 3, 2024
1 parent 93caafa commit 9c129ab
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/vendored-omp/src/caml_format_doc.cppo.ml
Original file line number Diff line number Diff line change
Expand Up @@ -381,12 +381,7 @@ module Driver = struct
(fmting_lit:CamlinternalFormatBasics.formatting_lit)
= match fmting_lit with
| Close_box -> pp_close_box ppf ()
| Close_tag ->
#if OCAML_VERSION >= (4,08,0)
pp_close_stag ppf ()
#else
pp_close_tag ppf ()
#endif
| Close_tag -> pp_close_stag ppf ()
| Break (_, width, offset) -> pp_print_break ppf width offset
| FFlush -> pp_print_flush ppf ()
| Force_newline -> pp_force_newline ppf ()
Expand Down Expand Up @@ -428,11 +423,7 @@ module Driver = struct
output_formatting_lit ppf f;
| Acc_formatting_gen (p, Acc_open_tag acc') ->
output_acc ppf p;
#if OCAML_VERSION >= (4,08,0)
pp_open_stag ppf (Format.String_tag (compute_tag output_acc acc'))
#else
pp_open_stag ppf (compute_tag output_acc acc')
#endif
| Acc_formatting_gen (p, Acc_open_box acc') ->
output_acc ppf p;
let (indent, bty) =
Expand Down

0 comments on commit 9c129ab

Please sign in to comment.