Skip to content

Commit

Permalink
Fix library function duplicate check indentation (PR #1213)
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Oct 10, 2023
1 parent 7f631c6 commit 5cc4811
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/analyses/libraryFunctions.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1047,11 +1047,11 @@ let all_library_descs: (string, LibraryDesc.t) Hashtbl.t =
let activated_library_descs: (string, LibraryDesc.t) Hashtbl.t ResettableLazy.t =
let union =
Hashtbl.merge (fun _ desc1 desc2 ->
match desc1, desc2 with
| (Some _ as desc), None
| None, (Some _ as desc) -> desc
| _, _ -> assert false
)
match desc1, desc2 with
| (Some _ as desc), None
| None, (Some _ as desc) -> desc
| _, _ -> assert false
)
in
ResettableLazy.from_fun (fun () ->
GobConfig.get_string_list "lib.activated"
Expand Down

0 comments on commit 5cc4811

Please sign in to comment.