Skip to content

Commit e0c7e32

Browse files
committed
Remove confusing order of operations in RelationCil
1 parent f4486e6 commit e0c7e32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/relationCil.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ struct
2626
let varinfo_tracked vi =
2727
(* no vglob check here, because globals are allowed in relation, but just have to be handled separately *)
2828
let hasTrackAttribute = List.exists (fun (Attr(s,_)) -> s = "goblint_relation_track") in
29-
type_tracked vi.vtype && (not @@ GobConfig.get_bool "annotation.goblint_relation_track" || hasTrackAttribute vi.vattr)
29+
type_tracked vi.vtype && (not (GobConfig.get_bool "annotation.goblint_relation_track") || hasTrackAttribute vi.vattr)
3030
end
3131

3232
(** To be used in autotuner. *)

0 commit comments

Comments
 (0)