| author | |
| committer | |
| log | 235d56cb828b97cb72895b310119e08abb0fe907 |
| tree | 4db16e34dcf0d4bba606fd01dafa1164142204ae |
| parent | b4c0396d3cdd04fcced585bb304685dcdc33d874 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/json.zig+1-1| ... | ... | @@ -2101,7 +2101,7 @@ pub const Parser = struct { |
| 2101 | 2101 | // Unescape a JSON string |
| 2102 | 2102 | // Only to be used on strings already validated by the parser |
| 2103 | 2103 | // (note the unreachable statements and lack of bounds checking) |
| 2104 | fn unescapeString(output: []u8, input: []const u8) !void { | |
| 2104 | pub fn unescapeString(output: []u8, input: []const u8) !void { | |
| 2105 | 2105 | var inIndex: usize = 0; |
| 2106 | 2106 | var outIndex: usize = 0; |
| 2107 | 2107 |