From 71dde82888df08e2e2f9940318a0fcac1f478dc2 Mon Sep 17 00:00:00 2001 From: heckflosse Date: Mon, 25 Sep 2017 02:08:06 +0200 Subject: [PATCH] fix warning in improcfun.cc --- rtengine/improcfun.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/rtengine/improcfun.cc b/rtengine/improcfun.cc index 3bc154446..1676dc433 100644 --- a/rtengine/improcfun.cc +++ b/rtengine/improcfun.cc @@ -1891,12 +1891,9 @@ void ImProcFunctions::ciecam_02float (CieImage* ncie, float adap, int begh, int } } - float meanQ; if (std::isnan (mean)) { mean = (sum / ((height) * width)) / 327.68f; //for Yb for all image...if one day "pipette" we can adapt Yb for each zone - meanQ = (sumQ / ((height) * width));//in case of - } }