1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

fixed VS preprocessor condition to include pmmintrin.h (which is available in VS2008 and later versions, but not in VS2005)

This commit is contained in:
Vadim Pisarevsky
2010-07-16 14:28:50 +00:00
parent 670fff5f42
commit 396aa53e96
@@ -109,7 +109,7 @@ CV_INLINE IppiSize ippiSize(int width, int height)
#include "emmintrin.h"
#define CV_SSE 1
#define CV_SSE2 1
#if defined __SSE3__ || _MSC_VER >= 1400
#if defined __SSE3__ || _MSC_VER >= 1500
#include "pmmintrin.h"
#define CV_SSE3 1
#endif