1 | #ifndef SIMDJSON_ARM64_INTRINSICS_H |
---|---|
2 | #define SIMDJSON_ARM64_INTRINSICS_H |
3 | |
4 | // This should be the correct header whether |
5 | // you use visual studio or other compilers. |
6 | #include <arm_neon.h> |
7 | |
8 | static_assert(sizeof(uint8x16_t) <= simdjson::SIMDJSON_PADDING, "insufficient padding for arm64"); |
9 | |
10 | #endif // SIMDJSON_ARM64_INTRINSICS_H |
11 |