From ba534817502c7f02930efb567c6dd6f74cfe995a Mon Sep 17 00:00:00 2001 From: heckflosse Date: Thu, 2 Jun 2016 18:15:55 +0200 Subject: [PATCH] Disable #pragma omp simd statement for clang builds, fixes #3324 --- rtengine/LUT.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/LUT.h b/rtengine/LUT.h index 76bcf0ccd..27b742a58 100644 --- a/rtengine/LUT.h +++ b/rtengine/LUT.h @@ -262,7 +262,7 @@ public: LUT & operator+=(LUT &rhs) { if (rhs.size == this->size) { -#ifdef _OPENMP +#ifdef _RT_NESTED_OPENMP // temporary solution to fix Issue #3324 #pragma omp simd #endif