Skip to content

Commit

Permalink
more stag stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro committed Nov 3, 2024
1 parent 1999f3c commit fe06528
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/vendored-omp/src/caml_format_doc.cppo.ml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,12 @@ end
| Acc_formatting_gen (p, Acc_open_tag acc') ->
let tag = to_string (compose_acc acc' empty) in
let doc = compose_acc p doc in
doc |> open_tag (Format.String_tag tag)
doc |>
#if OCAML_VERSION >= (4,08,0)
open_tag (Format.String_tag tag)
#else
open_tag tag
#endif
| Acc_formatting_gen (p, Acc_open_box acc') ->
let doc = compose_acc p doc in
let box = to_string (compose_acc acc' empty) in
Expand Down

0 comments on commit fe06528

Please sign in to comment.