1#ifndef SIMDJSON_WESTMERE_INTRINSICS_H
2#define SIMDJSON_WESTMERE_INTRINSICS_H
3
4#ifdef IS_X86_64
5#ifdef _MSC_VER
6#include <intrin.h> // visual studio
7#else
8#include <x86intrin.h> // elsewhere
9#endif // _MSC_VER
10#endif // IS_X86_64
11#endif // SIMDJSON_WESTMERE_INTRINSICS_H
12