Skip to content

Commit 4349a6b

Browse files
committed
Suppress warning about unused variable
1 parent ec84051 commit 4349a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let flags_list_of_int64 all_flags v =
3232
let int64_of_flags_list all_flags f =
3333
let open Int64 in
3434
let bitwise_or acc value =
35-
let i, _f = List.find (fun (i', f') -> value = f') all_flags in
35+
let i, _f = List.find (fun (_, f') -> value = f') all_flags in
3636
logor acc i
3737
in
3838
List.fold_left bitwise_or Int64.zero f

0 commit comments

Comments
 (0)