statistics.cc:
change printf to be printed only when something is binned so regression doesn't freak out. base/statistics.cc: change printf to be printed only when something is binned so regression doesn't freak out. --HG-- extra : convert_revision : cb60128fc3ab605aa7e915c7c7512cf93b156c96
This commit is contained in:
parent
b525eb5bbe
commit
da62ad294e
1 changed files with 1 additions and 1 deletions
|
@ -197,11 +197,11 @@ Database::dump(ostream &stream)
|
||||||
++j;
|
++j;
|
||||||
ccprintf(stream, "---------------------------------\n");
|
ccprintf(stream, "---------------------------------\n");
|
||||||
}
|
}
|
||||||
|
ccprintf(stream, "**************ALL STATS************\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
list_t::iterator k = printStats.begin();
|
list_t::iterator k = printStats.begin();
|
||||||
list_t::iterator endprint = printStats.end();
|
list_t::iterator endprint = printStats.end();
|
||||||
ccprintf(stream, "*****ALL STATS*****\n");
|
|
||||||
while (k != endprint) {
|
while (k != endprint) {
|
||||||
Stat *stat = *k;
|
Stat *stat = *k;
|
||||||
if (stat->dodisplay() && !stat->binned())
|
if (stat->dodisplay() && !stat->binned())
|
||||||
|
|
Loading…
Reference in a new issue