From d719dd385e5c1ef2cbf6d46843cda8423649263f Mon Sep 17 00:00:00 2001 From: heckflosse Date: Thu, 2 Jun 2016 23:10:57 +0200 Subject: [PATCH] Fix possible issues when building with clang --- rtengine/LUT.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtengine/LUT.h b/rtengine/LUT.h index 63b6dc08a..24f883766 100644 --- a/rtengine/LUT.h +++ b/rtengine/LUT.h @@ -250,7 +250,7 @@ public: template::value>::type> LUT & operator*=(float factor) { -#ifdef _OPENMP +#ifdef _RT_NESTED_OPENMP // temporary solution to fix Issue #3324 #pragma omp simd #endif @@ -265,7 +265,7 @@ public: template::value>::type> LUT & operator/=(float divisor) { -#ifdef _OPENMP +#ifdef _RT_NESTED_OPENMP // temporary solution to fix Issue #3324 #pragma omp simd #endif