From 031c41af60469314ccceef649c0683bf04a5205b Mon Sep 17 00:00:00 2001 From: heckflosse Date: Wed, 9 Dec 2015 01:54:47 +0100 Subject: [PATCH] Fix Win32 Debug build part two --- rtengine/ipvibrance.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/ipvibrance.cc b/rtengine/ipvibrance.cc index 2c91fbf01..3e6ff97f2 100644 --- a/rtengine/ipvibrance.cc +++ b/rtengine/ipvibrance.cc @@ -188,7 +188,7 @@ void ImProcFunctions::vibrance (LabImage* lab) MunsDebugInfo = new MunsellDebugInfo(); } - #pragma omp parallel default(shared) firstprivate(lab, width, height, chromaPastel, chromaSatur, highlight, limitpastelsatur, transitionweighting, protectskins, avoidcolorshift, MunsDebugInfo) reduction(+: negat, moreRGB, negsat, moresat) if (multiThread) + #pragma omp parallel default(shared) firstprivate(lab, MunsDebugInfo) reduction(+: negat, moreRGB, negsat, moresat) if (multiThread) #else #pragma omp parallel default(shared) if (multiThread) #endif