1
0
Fork 0
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:
Steffen Vogel 2022-03-25 17:33:34 +01:00
parent f1fd77651c
commit 64b581c3aa

View file

@ -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),