Disable #pragma omp simd statement for clang builds, fixes #3324

This commit is contained in:
heckflosse
2016-06-02 18:15:55 +02:00
parent fcd2c1523c
commit ba53481750

View File

@@ -262,7 +262,7 @@ public:
LUT<T> & operator+=(LUT<T> &rhs) LUT<T> & operator+=(LUT<T> &rhs)
{ {
if (rhs.size == this->size) { if (rhs.size == this->size) {
#ifdef _OPENMP #ifdef _RT_NESTED_OPENMP // temporary solution to fix Issue #3324
#pragma omp simd #pragma omp simd
#endif #endif