We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4486e6 commit e0c7e32Copy full SHA for e0c7e32
src/util/relationCil.ml
@@ -26,7 +26,7 @@ struct
26
let varinfo_tracked vi =
27
(* no vglob check here, because globals are allowed in relation, but just have to be handled separately *)
28
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)
+ type_tracked vi.vtype && (not (GobConfig.get_bool "annotation.goblint_relation_track") || hasTrackAttribute vi.vattr)
30
end
31
32
(** To be used in autotuner. *)
0 commit comments