mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
22 lines
526 B
C++
22 lines
526 B
C++
#ifndef SIMDJSON_WESTMERE_STAGE2_H
|
|
#define SIMDJSON_WESTMERE_STAGE2_H
|
|
|
|
#include "simdjson.h"
|
|
#include "westmere/implementation.h"
|
|
#include "westmere/stringparsing.h"
|
|
#include "westmere/numberparsing.h"
|
|
|
|
TARGET_WESTMERE
|
|
namespace simdjson {
|
|
namespace westmere {
|
|
|
|
#include "generic/atomparsing.h"
|
|
#include "generic/structural_iterator.h"
|
|
#include "generic/structural_parser.h"
|
|
#include "generic/streaming_structural_parser.h"
|
|
|
|
} // namespace westmere
|
|
} // namespace simdjson
|
|
UNTARGET_REGION
|
|
#endif // SIMDJSON_WESTMERE_STAGE2_H
|