Commit 396aa53e authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

fixed VS preprocessor condition to include pmmintrin.h (which is available in…

fixed VS preprocessor condition to include pmmintrin.h (which is available in VS2008 and later versions, but not in VS2005)
parent 670fff5f
...@@ -109,7 +109,7 @@ CV_INLINE IppiSize ippiSize(int width, int height) ...@@ -109,7 +109,7 @@ CV_INLINE IppiSize ippiSize(int width, int height)
#include "emmintrin.h" #include "emmintrin.h"
#define CV_SSE 1 #define CV_SSE 1
#define CV_SSE2 1 #define CV_SSE2 1
#if defined __SSE3__ || _MSC_VER >= 1400 #if defined __SSE3__ || _MSC_VER >= 1500
#include "pmmintrin.h" #include "pmmintrin.h"
#define CV_SSE3 1 #define CV_SSE3 1
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment