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

[Eva] Values request hides the consolidated value when there is only one callstack.

parent 7703145e
No related branches found
No related tags found
No related merge requests found
...@@ -165,8 +165,9 @@ let consolidated = ref None ...@@ -165,8 +165,9 @@ let consolidated = ref None
let table = Hashtbl.create 100 let table = Hashtbl.create 100
let iter f = let iter f =
Hashtbl.iter (fun key data -> f (Some key, data)) table; if Hashtbl.length table > 1
Extlib.may (fun values -> f (None, values)) !consolidated then Extlib.may (fun values -> f (None, values)) !consolidated;
Hashtbl.iter (fun key data -> f (Some key, data)) table
let array = let array =
let model = States.model () in let model = States.model () in
......
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