mirror of
https://github.com/opencv/opencv.git
synced 2026-09-25 04:09:57 +03:00
Merge pull request #29478 from vrabaud:persistence2
Fix case for intrin.h
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
#if defined _WIN32 && (defined(_M_ARM) || defined(_M_ARM64) || defined(_M_ARM64EC))
|
#if defined _WIN32 && (defined(_M_ARM) || defined(_M_ARM64) || defined(_M_ARM64EC))
|
||||||
# define _ARM64_DISTINCT_NEON_TYPES
|
# define _ARM64_DISTINCT_NEON_TYPES
|
||||||
# include <Intrin.h>
|
# include <intrin.h>
|
||||||
# include <arm_neon.h>
|
# include <arm_neon.h>
|
||||||
# define CV_NEON 1
|
# define CV_NEON 1
|
||||||
#elif defined(__ARM_NEON)
|
#elif defined(__ARM_NEON)
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ typedef unsigned __int64 uint64_t;
|
|||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
|
|
||||||
#if defined _WIN32 && (defined(_M_ARM) || defined(_M_ARM64) || defined(_M_ARM64EC))
|
#if defined _WIN32 && (defined(_M_ARM) || defined(_M_ARM64) || defined(_M_ARM64EC))
|
||||||
# include <Intrin.h>
|
# include <intrin.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__ARM_NEON) && !defined(__CUDACC__)
|
#if defined(__ARM_NEON) && !defined(__CUDACC__)
|
||||||
|
|||||||
Reference in New Issue
Block a user