Skip to content

Commit b90ee73

Browse files
Fix TODO which needed to wait on #1686
1 parent 84d9d27 commit b90ee73

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/cdomain/value/cdomains/int/defExcDomain.ml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,7 @@ struct
320320

321321
let of_excl_list t l =
322322
let r = size t in (* elements in l are excluded from the full range of t! *)
323-
`Excluded (List.fold_right S.add l (S.empty ()), r)
324-
(* TODO: Change after #1686 has landed *)
325-
(* `Excluded (S.of_list l, r) *)
323+
`Excluded (S.of_list l, r)
326324

327325
let is_excl_list l = match l with `Excluded _ -> true | _ -> false
328326
let to_excl_list (x:t) = match x with

0 commit comments

Comments
 (0)