1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-26 15:03:14 +00:00

Fix incorrect include when building with MSVC

Keeping track of VOLK's improvements, see
65539f2691
This commit is contained in:
Carles Fernandez 2016-03-09 18:23:19 +01:00
parent 9a92672905
commit 250375dbd3

View File

@ -91,8 +91,12 @@
#include <inttypes.h>
#ifdef LV_HAVE_SSE
#ifdef _WIN32
#include <intrin.h>
#else
#include <x86intrin.h>
#endif
#endif
union bit128{
uint8_t i8[16];