Fix compile - jsonparser needs to include unified header
This commit is contained in:
parent
682c224d1a
commit
c4c51627d3
|
@ -7,6 +7,7 @@
|
|||
#include "stage2_flatten.h"
|
||||
#include "stage3_ape_machine.h"
|
||||
#include "stage4_shovel_machine.h"
|
||||
#include "stage34_unified.h"
|
||||
|
||||
// Allocate a ParsedJson structure that can support document
|
||||
// up to len bytes.
|
||||
|
@ -23,4 +24,4 @@ void deallocate_ParsedJson(ParsedJson *pj_ptr);
|
|||
bool json_parse(const u8 *buf, size_t len, ParsedJson &pj);
|
||||
|
||||
// like json_parse but users 4 stages, slower.
|
||||
bool json_parse_4stages(const u8 *buf, size_t len, ParsedJson &pj);
|
||||
bool json_parse_4stages(const u8 *buf, size_t len, ParsedJson &pj);
|
||||
|
|
Loading…
Reference in New Issue