intel / ARM_NEON_2_x86_SSE

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

Closed sharkfox closed 6 years ago

sharkfox commented 6 years ago

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

Zvictoria commented 6 years ago

Thanks a lot!