mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-09 23:16:00 -06:00
#2141 Fixed wrong default values for MinMaxAccumulator
This commit is contained in:
parent
fbb6f56bd3
commit
b4b1dfa0f9
@ -62,7 +62,7 @@ private:
|
||||
class MinMaxAccumulator
|
||||
{
|
||||
public:
|
||||
MinMaxAccumulator(double initMin = -HUGE_VAL, double initMax = HUGE_VAL): max(initMax), min(initMin) {}
|
||||
MinMaxAccumulator(double initMin = HUGE_VAL, double initMax = -HUGE_VAL): max(initMax), min(initMin) {}
|
||||
|
||||
void addData(const std::vector<double>& values)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user