1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-19 19:44:14 +08:00

Merge pull request #2827 from vpisarev:wechat_qrcode_win_fix

This commit is contained in:
Alexander Alekhin
2021-01-21 12:49:15 +00:00

View File

@@ -15,6 +15,8 @@
#if (defined __GNUC__ && defined __x86_64__ && defined __SSE2__ && !defined __APPLE__ && \ #if (defined __GNUC__ && defined __x86_64__ && defined __SSE2__ && !defined __APPLE__ && \
!defined __GXX_WEAK__) !defined __GXX_WEAK__)
#include <ammintrin.h> #include <ammintrin.h>
#elif defined _MSC_VER && (defined _M_X64 || defined _M_IX86)
#include <emmintrin.h>
#endif #endif
#include <algorithm> #include <algorithm>