Skip to content
Snippets Groups Projects
Commit 425edab4 authored by David Bühler's avatar David Bühler
Browse files

[wp] Plugin reduc: removes an unused field to avoid a warning with ocaml 4.13.

parent 22264d8e
No related branches found
No related tags found
No related merge requests found
......@@ -39,14 +39,14 @@ type varh = VarAll
type annoth = AnnotAll | AnnotInout
type env = {
rel_varh: varh;
(* rel_varh: varh; *)
rel_annoth: annoth;
rel_stmts: Stmt.Set.t;
rel_vars: LvalStructEq.Set.t Stmt.Map.t;
}
let empty_env varh annoth = {
rel_varh = varh;
let empty_env _varh annoth = {
(* rel_varh = varh; *)
rel_annoth = annoth;
rel_stmts = Stmt.Set.empty;
rel_vars = Stmt.Map.empty;
......
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