#1297 Fixed invalid initialization of min/max values

This commit is contained in:
Magne Sjaastad 2017-03-14 17:07:27 +01:00
parent f875824eaf
commit 7db6dc2259

View File

@ -318,8 +318,8 @@ void RimEclipsePropertyFilter::computeResultValueRange()
{
CVF_ASSERT(parentContainer());
double min = 0.0;
double max = 0.0;
double min = HUGE_VAL;
double max = -HUGE_VAL;
clearCategories();