Commenting out one attribute when SIMDJSON_THREADS_ENABLED is off. (#453)
This commit is contained in:
parent
c6f2f60b03
commit
a4025788ae
|
@ -127,7 +127,9 @@ namespace simdjson {
|
||||||
size_t next_json{0};
|
size_t next_json{0};
|
||||||
bool load_next_batch{true};
|
bool load_next_batch{true};
|
||||||
size_t current_buffer_loc{0};
|
size_t current_buffer_loc{0};
|
||||||
|
#ifdef SIMDJSON_THREADS_ENABLED
|
||||||
size_t last_json_buffer_loc{0};
|
size_t last_json_buffer_loc{0};
|
||||||
|
#endif
|
||||||
size_t n_parsed_docs{0};
|
size_t n_parsed_docs{0};
|
||||||
size_t n_bytes_parsed{0};
|
size_t n_bytes_parsed{0};
|
||||||
#ifdef SIMDJSON_THREADS_ENABLED
|
#ifdef SIMDJSON_THREADS_ENABLED
|
||||||
|
|
Loading…
Reference in New Issue