1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-03 14:03:52 +00:00

fix: build on Windows ARM64 (#913)

Regression introduced in commit 3cd730b18b563fdd48cd95dfb0174551aa18c3b3
This commit is contained in:
Peter Harris 2023-08-04 16:01:05 -04:00 committed by GitHub
parent 792d892867
commit 9cd989087d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,10 @@
#define _X86_ #define _X86_
#elif defined(__arm__) || defined(_M_ARM) || defined(_M_ARMT) #elif defined(__arm__) || defined(_M_ARM) || defined(_M_ARMT)
#define _ARM_ #define _ARM_
#elif defined(__aarch64__) || defined(_M_ARM64)
#define _ARM64_
#elif defined(_M_ARM64EC)
#define _ARM64EC_
#endif #endif
#endif #endif