Zero as initial max value is fine too.

This commit is contained in:
Bartosz Taudul 2018-04-29 02:56:23 +02:00
parent 723f98d24b
commit 7fdc6f5453

View File

@ -566,7 +566,7 @@ Worker::Worker( FileRead& f, EventType::Type eventMask )
auto fend = frees.end();
double min = 0;
double max = std::numeric_limits<double>::min();
double max = 0;
double usage = 0;
auto ptr = plot->data.data();