Skip to content

Commit dff2e3f

Browse files
committed
format
1 parent 32524e3 commit dff2e3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: compiler/ml/typecore.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3572,7 +3572,7 @@ and translate_unified_ops (env : Env.t) (funct : Typedtree.expression)
35723572
| Texp_ident (path, _, _) -> (
35733573
let entry = Hashtbl.find_opt Unified_ops.index_by_path (Path.name path) in
35743574
match (entry, sargs) with
3575-
| Some {form = Unary; specialization; _}, [(lhs_label, lhs_expr)] ->
3575+
| Some {form = Unary; specialization}, [(lhs_label, lhs_expr)] ->
35763576
let lhs = type_exp env lhs_expr in
35773577
let lhs_type = expand_head env lhs.exp_type in
35783578
let result_type =
@@ -3597,7 +3597,7 @@ and translate_unified_ops (env : Env.t) (funct : Typedtree.expression)
35973597
in
35983598
let targs = [(lhs_label, Some lhs)] in
35993599
Some (targs, result_type)
3600-
| ( Some {form = Binary; specialization; _},
3600+
| ( Some {form = Binary; specialization},
36013601
[(lhs_label, lhs_expr); (rhs_label, rhs_expr)] ) ->
36023602
let lhs = type_exp env lhs_expr in
36033603
let lhs_type = expand_head env lhs.exp_type in

0 commit comments

Comments
 (0)