jsonxx icon indicating copy to clipboard operation
jsonxx copied to clipboard

A JSON parser in C++

Results 15 jsonxx issues
Sort by recently updated
recently updated
newest added

Seems like \u values are still not parsed correctly. Ex : \u00e7 (can be found in https://open.tan.fr/ewp/tempsattente.json/COMB2) I'm not entirely confortable with specs, but it seems that a big part...

Differentiate Integer type from Double type (which was originally named Number), make it possible to correctly store a 64bit integer on 32bit systems. Note: this commit will stop programs that...

It looks like there is an issue when using this under Windows and there are unicode characters. The code in parse_string does not appear to work. It might be due...

Would like to be able to accept both quoted and unquoted keys. { item1: 'value1', "item2": "value2" } With UnquotedKeys enabled, only item1 loads, when UnquotedKeys is disabled, this example...

Sweeping through the .cc file, I didn't see anything that warranted the separate source file. Easy integration for a library is a very attractive feature, and you can't be easier...

suggestions