From 0acd818efc3856b06e3e90515b347ef1052c477e Mon Sep 17 00:00:00 2001 From: matze Date: Fri, 2 Sep 2016 20:35:08 +0200 Subject: [PATCH] Removed #elif defined(__INTEL_COMPILER) because it is disabled at the moment --- modules/imgproc/src/contours.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/src/contours.cpp b/modules/imgproc/src/contours.cpp index 163b88b2a8..b27c1552dc 100644 --- a/modules/imgproc/src/contours.cpp +++ b/modules/imgproc/src/contours.cpp @@ -55,7 +55,7 @@ inline unsigned int trailingZeros(unsigned int value) { return _tzcnt_u32(value); #elif defined(_GCC) return __builtin_ctz(value); -#elif defined(__INTEL_COMPILER) +//#elif defined(__INTEL_COMPILER) //return _bit_scan_reverse(value); #else static const int MultiplyDeBruijnBitPosition[32] = {