Skip to content

Commit

Permalink
Fix jsoo compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
bclement-ocp committed May 31, 2024
1 parent b5ebd3a commit b162477
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/js/options_interface.ml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ let get_input_format = function
| None -> None
| Some f -> match f with
| Native -> Some Options.Native
| Smtlib2 -> Some Options.Smtlib2
| Smtlib2 -> Some (Options.Smtlib2 `Poly)
| Why3 -> Some Options.Why3
| Unknown s -> Some (Options.Unknown s)

let get_output_format = function
| None -> None
| Some f -> match f with
| Native -> Some Options.Native
| Smtlib2 -> Some Options.Smtlib2
| Smtlib2 -> Some (Options.Smtlib2 `Poly)
| Why3 -> Some Options.Why3
| Unknown s -> Some (Options.Unknown s)

Expand Down

0 comments on commit b162477

Please sign in to comment.