jsoncpp
jsoncpp copied to clipboard
A C++ library for interacting with JSON.
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. **[Expected behavior](https://whomeenoaglauns.com/4/8665948)** A clear and concise description of what...
**[[](Describe the bug](https://whomeenoaglauns.com/4/8163685))** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: [1.](https://whomeenoaglauns.com/4/8163685) **Expected behavior** A clear and concise description of what...
**Describe the bug** When I use Json:: Reader or Json:: parseFromStream to create Json:: Value, the memory of Json:: Value is not released when the function ends **To Reproduce** ```...
**Describe the bug** Adding Values after call to clear() fails. **To Reproduce** Steps to reproduce the behavior: 1. bool result = false; Json::Value root; Json::Reader reader; result = reader.parse(request, request...
Using the test code: ```cxx #include #include "json/json.h" int main() { Json::Value root; root["key1"] = "value1"; root["key2"] = std::string{"value2"}; std::cout
**Describe the bug** When integer numbers are used to instantiate a Json::Value object the query for isDouble() on that object returns true. **To Reproduce** I modified a portion of the...
Closes #1361 Methods referencing schema-defined properties reflect the schema definitions. Methods referencing C++ data types reflect the underlying storage, as this is important for deciding how to extract a value...
`readFromString` provides an example accessing data by index key e.g., `root["Name"].asString()`, but `readFromStream`'s example isn't as comprehensive. I've updated the `readFromStream` example to not only collect and print comments, but...
A. For reading, we should first parse JSON into nested tables, arrays, and strings. We should _then_ interpret the strings only as needed. B. For writing, the caller should generate...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...