Commit 3141ab7a authored by twanvl's avatar twanvl

FunctionProfile::time -> FunctionProfile::total_time

parent dc326688
...@@ -225,7 +225,7 @@ void CLISetInterface::handleCommand(const String& command) { ...@@ -225,7 +225,7 @@ void CLISetInterface::handleCommand(const String& command) {
cli << _("======== ======== ====== ===============================") << NORMAL << ENDL; cli << _("======== ======== ====== ===============================") << NORMAL << ENDL;
} else { } else {
for (int i = 1 ; i < level ; ++i) cli << _(" "); for (int i = 1 ; i < level ; ++i) cli << _(" ");
cli << String::Format(_("%8.5f %8.5f %6d %s"), item.time(), 1000 * item.avg_time(), item.calls, item.name.c_str()) << ENDL; cli << String::Format(_("%8.5f %8.5f %6d %s"), item.total_time(), 1000 * item.avg_time(), item.calls, item.name.c_str()) << ENDL;
} }
// show children // show children
vector<FunctionProfileP> children; vector<FunctionProfileP> children;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment