From 4f4afe186d854fb81aca7db4862c366271f24d06 Mon Sep 17 00:00:00 2001 From: Marc Tiehuis Date: Tue, 22 May 2018 15:34:17 +1200 Subject: [PATCH] Make JsonParser public --- std/json.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/json.zig b/std/json.zig index b73397cd26..e969899403 100644 --- a/std/json.zig +++ b/std/json.zig @@ -1053,7 +1053,7 @@ pub const Value = union(enum) { }; // A non-stream JSON parser which constructs a tree of Value's. -const JsonParser = struct { +pub const JsonParser = struct { allocator: &Allocator, state: State, copy_strings: bool,