File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1309,7 +1309,7 @@ end = struct
13091309 [ " implements" , to_dyn impl ])
13101310 in
13111311 let requires = List. concat [ requires_implements; requires_params; requires ] in
1312- let _ , requires =
1312+ let (_ : Set.t ) , requires =
13131313 List. fold_left requires ~init: (Set. empty, [] ) ~f: (fun (seen , lst ) lib ->
13141314 if Set. mem seen lib then seen, lst else Set. add seen lib, lib :: lst)
13151315 in
@@ -2123,7 +2123,7 @@ end = struct
21232123 ;;
21242124
21252125 let compile_closure_with_overlap_checks db ts ~forbidden_libraries =
2126- let _closure , state = step1_closure db ts ~forbidden_libraries in
2126+ let (_ : Closure.t ) , state = step1_closure db ts ~forbidden_libraries in
21272127 Closure. result state `Compile
21282128 ;;
21292129
@@ -2154,7 +2154,7 @@ end = struct
21542154 ;;
21552155
21562156 let check_forbidden ts ~forbidden_libraries =
2157- let _closure , state = step1_closure None ts ~forbidden_libraries in
2157+ let (_ : Closure.t ) , state = step1_closure None ts ~forbidden_libraries in
21582158 let + (_ : lib list ) = Closure. result state `Partial_link in
21592159 ()
21602160 ;;
You can’t perform that action at this time.
0 commit comments