json icon indicating copy to clipboard operation
json copied to clipboard

A C++11 library for parsing and serializing JSON to and from a DOM container in memory.

Results 171 json issues
Sort by recently updated
recently updated
newest added

Commit: 26cedfabfc1ff13cd6fbc3d8ae03c33724d2343d GCC: ``gcc version 10.2.1 20200825 [revision c0746a1beb1ba073c7981eb09f55b3d993b32e5c] (SUSE Linux)`` CMake command: ``` CC=gcc-10 CXX=g++-10 cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=17 -DBOOST_JSON_STANDALONE=ON -DBUILD_TESTING=ON -DBOOST_JSON_BUILD_TESTS=ON -DBOOST_JSON_BUILD_FUZZERS=OFF -DBOOST_JSON_BUILD_EXAMPLES=OFF -DCMAKE_CXX_FLAGS="-flto -fno-fat-lto-objects" ../.. ``` Warnings:...

Did you think of making the complete way strings are stored or used configurable to the underlying char type? At least char8_t would be a pleaure to avoid mojibake on...

Why is there no `object::shrink_to_fit` ?

I would like to report an edge case that there is some dependency left between standalone Boost::JSON library and older Boost libraries. Below is a minimal example failing to compile...

When an integer is converted to a floating point type which cannot hold it without loss of precision, the conversion is implementation-defined. This apparently means, that the conversion can result...

Boost 1.76 When -DBOOST_JSON_STANDALONE is defined (or built against the actual freestanding library), the following code compiles. When it is built with boost and the macro is not defined, the...

In particular ```cxx std::vector< json::value, json::polymorphic_allocator < json::value > > v; ``` would result in a linking error if built in non-standalone mode.

Doc

The documentation needs to state that to use header-only, autolinking must be disabled on Windows. See: https://github.com/s9w/cpp-lit/issues/3

Doc

https://travis-ci.org/github/boostorg/json/builds/773287795 s390x fails many tests for non-obvious reasons. One thing to note is that it's a big endian platform (the only one such on Travis.) Xcode 7.3 and 8.3 fail...

### Version of Boost 1.75 ### Steps necessary to reproduce the problem Seems that any stl pmr resources are incompatible with the boost ones. This is quite undesirable as now...