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

Merge pull request #29478 from vrabaud:persistence2

Fix case for intrin.h
This commit is contained in:
Alexander Smorkalov
2026-07-09 16:24:36 +03:00
committed by GitHub
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__)