mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
16 lines
374 B
C
16 lines
374 B
C
#ifndef SIMDJSON_IMPLEMENTATIONS_H
|
|
#define SIMDJSON_IMPLEMENTATIONS_H
|
|
|
|
SIMDJSON_PUSH_DISABLE_WARNINGS
|
|
SIMDJSON_DISABLE_UNDESIRED_WARNINGS
|
|
|
|
// Implementations
|
|
#include "simdjson/arm64.h"
|
|
#include "simdjson/haswell.h"
|
|
#include "simdjson/westmere.h"
|
|
#include "simdjson/ppc64.h"
|
|
#include "simdjson/fallback.h"
|
|
|
|
SIMDJSON_POP_DISABLE_WARNINGS
|
|
|
|
#endif // SIMDJSON_IMPLEMENTATIONS_H
|