Skip to content
Snippets Groups Projects
Commit 840aa9d7 authored by Tristan Le Gall's avatar Tristan Le Gall
Browse files

Merge branch 'jan/fix/alias' into 'master'

[alias] correctly expose the graph's edge label type

See merge request frama-c/frama-c!4517
parents c7a85b70 231f1e04
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ module EdgeLabel : sig ...@@ -37,7 +37,7 @@ module EdgeLabel : sig
val pretty : Format.formatter -> t -> unit val pretty : Format.formatter -> t -> unit
end end
module G : Graph.Sig.G with type V.t = int and type E.t = int * EdgeLabel.t * int module G : Graph.Sig.G with type V.t = int and type E.label = EdgeLabel.t
type v = G.V.t type v = G.V.t
......
...@@ -36,7 +36,7 @@ module EdgeLabel : sig ...@@ -36,7 +36,7 @@ module EdgeLabel : sig
val pretty : Format.formatter -> t -> unit val pretty : Format.formatter -> t -> unit
end end
module G: Graph.Sig.G with type V.t = int and type E.t = int * EdgeLabel.t * int module G: Graph.Sig.G with type V.t = int and type E.label = EdgeLabel.t
module LSet = Cil_datatype.LvalStructEq.Set module LSet = Cil_datatype.LvalStructEq.Set
module VarSet = Cil_datatype.Varinfo.Set module VarSet = Cil_datatype.Varinfo.Set
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment