[sledge] Add missing label

Reviewed By: ngorogiannis

Differential Revision: D26250515

fbshipit-source-id: aa429e5b0
master
Josh Berdine 4 years ago committed by Facebook GitHub Bot
parent 7f60aa006a
commit 02ab2f18c9

@ -581,7 +581,7 @@ module Make(Ord: OrderedType) =
| [x0; x1; x2] -> add x2 (add x1 (singleton x0))
| [x0; x1; x2; x3] -> add x3 (add x2 (add x1 (singleton x0)))
| [x0; x1; x2; x3; x4] -> add x4 (add x3 (add x2 (add x1 (singleton x0))))
| _ -> of_sorted_list (List.sort_uniq Ord.compare l)
| _ -> of_sorted_list (List.sort_uniq ~cmp:Ord.compare l)
let add_seq i m =
Seq.fold_left (fun s x -> add x s) m i

Loading…
Cancel
Save