Correcting ugly indentation.

This commit is contained in:
Daniel Lemire
2019-07-01 11:55:39 -04:00
parent de08df6a7e
commit 1b81e7c928
+2 -2
View File
@@ -48,7 +48,7 @@ int json_parse_implementation(const uint8_t *buf, size_t len, ParsedJson &pj, bo
#else // SIMDJSON_SAFE_SAME_PAGE_READ_OVERRUN
if(true) { // if not SIMDJSON_SAFE_SAME_PAGE_READ_OVERRUN, we always reallocate
#endif
const uint8_t *tmpbuf = buf;
const uint8_t *tmpbuf = buf;
buf = (uint8_t *) allocate_padded_buffer(len);
if(buf == NULL) return simdjson::MEMALLOC;
memcpy((void*)buf,tmpbuf,len);
@@ -199,4 +199,4 @@ inline ParsedJson build_parsed_json(const padded_string &s) {
#endif
#endif