mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
conflicts are solved
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
#include "simdjson/common_defs.h"
|
||||
#include <iterator>
|
||||
|
||||
namespace simdjson {
|
||||
ParsedJson::iterator::iterator(ParsedJson &pj_) : pj(pj_), depth(0), location(0), tape_length(0), depthindex(nullptr) {
|
||||
if(!pj.isValid()) {
|
||||
throw InvalidJSON();
|
||||
@@ -92,3 +93,4 @@ bool ParsedJson::iterator::print(std::ostream &os, bool escape_strings) const {
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user