conflicts are solved

This commit is contained in:
ioioioio
2019-07-02 15:21:00 -04:00
parent 78406ba954
commit 9230588ce8
38 changed files with 192 additions and 161 deletions
+3 -1
View File
@@ -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;
}
}