authorgravatar for marc@tiehu.isMarc Tiehuis <marc@tiehu.is> 2018-05-22 15:34:17+12:00
committergravatar for marc@tiehu.isMarc Tiehuis <marc@tiehu.is> 2018-05-22 15:34:17+12:00
log4f4afe186d854fb81aca7db4862c366271f24d06
treead12b2101bbdd538142ceac0dfb7aa03517a3373
parent698c52e7961a78e68be39f4a6216f5c3d55f4f3f

Make JsonParser public


1 files changed, 1 insertions(+), 1 deletions(-)

std/json.zig+1-1
......@@ -1053,7 +1053,7 @@ pub const Value = union(enum) {
10531053};
10541054
10551055// A non-stream JSON parser which constructs a tree of Value's.
1056const JsonParser = struct {
1056pub const JsonParser = struct {
10571057 allocator: &Allocator,
10581058 state: State,
10591059 copy_strings: bool,