jsoncpp
jsoncpp copied to clipboard
A C++ library for interacting with JSON.
Could you attach gpg signatures to your releases? e.g. using ``` sh gpg --armor --detach-sign 1.3.0.tar.gz ``` The resulting file `1.3.0.tar.gz.asc` can then easily be added to the release via...
The compressed package is version 0.10.7, but the version written in the .h file is 0.10.6. jsoncpp-0.10.7.tar.gz/include/json/version.h,
**Describe the bug** Hi, I'm not living in an English speaking country and as such I naturally set `std::locale("")` to make cpp use familiar number representations instead (This changes the...
**Describe the bug** When building on Mac OS Apple Silicon M1, the build fails with the following errors: ``` WriteAuxiliaryFile /Users/some/buildAgent/work/jsoncpp/build/src/test_lib_json/jsoncpp.build/Debug/jsoncpp_test.build/Script-A6438F521B5657CAC4CB248A.sh (in target 'jsoncpp_test' from project 'jsoncpp') cd /Users/some/buildAgent/work/jsoncpp write-file...
toStyledString() produces \u escapes for UTF-8 characters such as ï. This is caused by escaping on the ground that c > 0x7F in doesAnyCharRequireEscaping(), called from valueToQuotedStringN() from BuiltStyledStreamWriter::writeValue(). The...
**Describe the bug** jsoncpp parses control characters below 0x20 which is (technically) not in accordance with the JSON grammar. **To Reproduce** We collected a minimum working sample [here](https://github.com/j-moeller/crossy-mws/tree/master/03-04-06-control-characters/jsoncpp). **Expected behavior**...
Error 0xc000007b is reported when using the debug version of the dynamic library.
I have a Json::Value object. I want to check if there is a key = 'data'. Is there any method can do this? i think find method is not the...
In my project,I meet a problem. the string format is: "[{xxxx},{xxxx},{xxxx},{xxxx},{xxxx}......]" It seems that jsoncpp only can process string like this format: {xxxx} so I can't parse this string. I...