1 | #ifndef SIMDJSON_FALLBACK_H |
2 | #define SIMDJSON_FALLBACK_H |
3 | |
4 | #include "simdjson/implementation-base.h" |
5 | |
6 | #if SIMDJSON_IMPLEMENTATION_FALLBACK |
7 | |
8 | namespace simdjson { |
9 | /** |
10 | * Fallback implementation (runs on any machine). |
11 | */ |
12 | namespace fallback { |
13 | } // namespace fallback |
14 | } // namespace simdjson |
15 | |
16 | #include "simdjson/fallback/implementation.h" |
17 | |
18 | #include "simdjson/fallback/begin.h" |
19 | |
20 | // Declarations |
21 | #include "simdjson/generic/dom_parser_implementation.h" |
22 | #include "simdjson/fallback/bitmanipulation.h" |
23 | #include "simdjson/generic/jsoncharutils.h" |
24 | #include "simdjson/generic/atomparsing.h" |
25 | #include "simdjson/fallback/stringparsing.h" |
26 | #include "simdjson/fallback/numberparsing.h" |
27 | #include "simdjson/fallback/end.h" |
28 | |
29 | #endif // SIMDJSON_IMPLEMENTATION_FALLBACK |
30 | #endif // SIMDJSON_FALLBACK_H |
31 | |