vivkin / gason

Lightweight and fast JSON parser for C++
MIT License
338 stars 51 forks source link

Make input immutable? #15

Open tals opened 9 years ago

tals commented 9 years ago

Right now the jsonParse() actually mutates the input buffer when handling backslash escaping.

Would be nice if it didn't do that, and it typically counters what the user expects when using a parser.

aggsol commented 8 years ago

It is part of the deal that the input buffer is destroyed. I guess this is "won't fix"