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

[Inout] Locally removes a compilation warning about unused modules.

parent de799415
No related branches found
No related tags found
No related merge requests found
......@@ -646,7 +646,9 @@ module Callwise = struct
Inout_type.map (Zone.filter_base filter) with_internals
with Not_found -> Inout_type.bottom
end) in
let module Compute = Dataflows.Simple_forward(Fenv)(Computer) in
let module [@warning "-60"] Compute =
Dataflows.Simple_forward (Fenv) (Computer)
in
Computer.end_dataflow ()
let record_for_callwise_inout ((call_stack: Db.Value.callstack), value_res) =
......@@ -715,7 +717,9 @@ module FunctionWise = struct
call_stack;
Stack.push kf call_stack;
let module Compute = Dataflows.Simple_forward(Fenv)(Computer) in
let module [@warning "-60"] Compute =
Dataflows.Simple_forward (Fenv) (Computer)
in
let result = Computer.end_dataflow () in
ignore (Stack.pop call_stack);
result
......
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