1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

Fix case for intrin.h

This is similar to: https://github.com/opencv/opencv/pull/28754
This commit is contained in:
Vincent Rabaud
2026-07-09 01:17:15 +02:00
parent 4ce2389a62
commit 71d900dc36
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
#if defined _WIN32 && (defined(_M_ARM) || defined(_M_ARM64) || defined(_M_ARM64EC))
# define _ARM64_DISTINCT_NEON_TYPES
# include <Intrin.h>
# include <intrin.h>
# include <arm_neon.h>
# define CV_NEON 1
#elif defined(__ARM_NEON)
+1 -1
View File
@@ -46,7 +46,7 @@ typedef unsigned __int64 uint64_t;
#include "defines.h"
#if defined _WIN32 && (defined(_M_ARM) || defined(_M_ARM64) || defined(_M_ARM64EC))
# include <Intrin.h>
# include <intrin.h>
#endif
#if defined(__ARM_NEON) && !defined(__CUDACC__)