The platform independent header allowing to compile any C/C++ code containing ARM NEON intrinsic functions for x86 target systems using SIMD up to AVX2 intrinsic functions
Other
430
stars
149
forks
source link
fix pointer truncation warning when using MSVC2015 #12
Hi Victoria,
I've fixed some warnings that occurred when compiling for x86_64. The usage of unsigned long is not the best choice as sizeof(unsigned long) is 4. Changing the casts to uintptr_t solves that in a generic way.
Cheers
Enrico
Hi Victoria, I've fixed some warnings that occurred when compiling for x86_64. The usage of unsigned long is not the best choice as sizeof(unsigned long) is 4. Changing the casts to uintptr_t solves that in a generic way. Cheers Enrico