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

pull/13383/head
Vadim Pisarevsky 15 years ago
parent 670fff5f42
commit 396aa53e96
  1. 2
      modules/core/include/opencv2/core/internal.hpp

@ -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

Loading…
Cancel
Save