mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
6a2728e730
* Get rid of dynamic allocation in ParsedJson::Iterator. * Implement copy assignment operator for ParsedJson::Iterator. * ParsedJson::Iterator is now a template class.
6 lines
148 B
C++
6 lines
148 B
C++
#include "simdjson/parsedjsoniterator.h"
|
|
|
|
namespace simdjson {
|
|
template class ParsedJson::BasicIterator<DEFAULT_MAX_DEPTH>;
|
|
} // namespace simdjson
|