mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
conflicts are solved
This commit is contained in:
+3
-1
@@ -1,5 +1,6 @@
|
||||
#include "simdjson/parsedjson.h"
|
||||
|
||||
namespace simdjson {
|
||||
ParsedJson::ParsedJson() :
|
||||
structural_indexes(nullptr), tape(nullptr), containing_scope_offset(nullptr),
|
||||
ret_address(nullptr), string_buf(nullptr), current_string_buf_loc(nullptr) {}
|
||||
@@ -97,7 +98,7 @@ int ParsedJson::getErrorCode() const {
|
||||
}
|
||||
|
||||
std::string ParsedJson::getErrorMsg() const {
|
||||
return simdjson::errorMsg(errorcode);
|
||||
return errorMsg(errorcode);
|
||||
}
|
||||
|
||||
void ParsedJson::deallocate() {
|
||||
@@ -318,3 +319,4 @@ bool ParsedJson::dump_raw_tape(std::ostream &os) {
|
||||
os << tapeidx << " : "<< type <<"\t// pointing to " << payload <<" (start root)\n";
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user