Dmitry

Results 134 comments of Dmitry

If you are still interested, PR #18 adds installation of CMake config file, which allows using the project via `find_package` (see [here](../tree/master/test/cmake/CMakeLists.txt) for an example).

Indeed. I believe, I have the fix in the works, but first I need to come up with a good way to test for exports being relocatable.

Expansion of tilde is supposed to be done by the shell. So, the question is, why didn't your shell do it?

You mean parse? JSON spec doesn't support infinities and NaNs. If it did, this issue wouldn't have existed.

This was "solved" by removing the standalone mode.

#522 implemented this, right?

@EikeAtOT can you provide an example with `value_to` that has become broken after 31dd29523292e579497158b79703a4e7e3f56a3c, so that I can evaluate if this is something we can and should fix?

@doganulus can you check out #713 again. It has been rewritten to be customisable. Does the provided functionality accomodate your use cases?

No, that option controls whether only nulls or any non-container can be replaced.

```c++ value jv = 1; jv.set_at_pointer("/a/b/c", "m"); // exception jv.set_at_pointer("/a/b/c", "m", {.replace_any_scalar = true}); // success ```