mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
hist: fix initialization of histograms
This commit is contained in:
parent
f1fd77651c
commit
64b581c3aa
1 changed files with 3 additions and 3 deletions
|
@ -37,11 +37,11 @@ namespace villas {
|
|||
|
||||
Hist::Hist(int buckets, Hist::cnt_t wu) :
|
||||
resolution(0),
|
||||
high(),
|
||||
low(),
|
||||
high(0),
|
||||
low(0),
|
||||
highest(std::numeric_limits<double>::min()),
|
||||
lowest(std::numeric_limits<double>::max()),
|
||||
last(),
|
||||
last(0),
|
||||
total(0),
|
||||
warmup(wu),
|
||||
higher(0),
|
||||
|
|
Loading…
Add table
Reference in a new issue