We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dcc0e6 commit ca52826Copy full SHA for ca52826
src/is_utf8.cpp
@@ -529,22 +529,12 @@ static inline uint32_t detect_supported_architectures() {
529
return instruction_set::ALTIVEC;
530
}
531
532
-#elif defined(__arm__) || defined(__aarch64__) // incl. armel, armhf, arm64
533
-
534
-#if defined(__ARM_NEON)
+#elif defined(__aarch64__) || defined(_M_ARM64)
535
536
static inline uint32_t detect_supported_architectures() {
537
return instruction_set::NEON;
538
539
540
-#else // ARM without NEON
541
542
-static inline uint32_t detect_supported_architectures() {
543
- return instruction_set::DEFAULT;
544
-}
545
546
-#endif
547
548
#elif defined(__x86_64__) || defined(_M_AMD64) // x64
549
550
namespace {
0 commit comments