Skip to content

Commit

Permalink
Remove unused rec flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerhard committed Dec 11, 2023
1 parent 15049dd commit d139cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cdomains/preValueDomain.ml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Offs = struct
include Offset.MakeLattice (IndexDomain)

(** Add the [additional_offset] to the [base_offset]. In case [additional_offset] starts with an index offset, merge this index with the index occurring at the end of [base_offset], if any. *)
let rec add_offset_merge_index_offset ~(base_offset: t) ~(additional_offset: t): t =
let add_offset_merge_index_offset ~(base_offset: t) ~(additional_offset: t): t =
match additional_offset with
| `NoOffset -> base_offset
| `Field (f,o) -> add_offset base_offset additional_offset
Expand Down

0 comments on commit d139cee

Please sign in to comment.