Niels Lohmann
Niels Lohmann
Please check the CI issues.
I will check tomorrow.
I have a fix for `ci_static_analysis_clang` in #4801. Once this is merged, please rebase and check [Ubuntu / ci_module_cpp20 (gcc:latest) (pull_request)](https://github.com/nlohmann/json/actions/runs/15332015481/job/43164545075?pr=4799).
#4801 is merged. Please rebase.
I need to review the CMake part once more. Please be patient.
The detail namespace is not meant to be used by client code. It is allowed to be changed or removed between releases without warning.
I am traveling right now and will check this next week
Thanks for the PR and the patience!
Thanks @gregmarr. I am also confused. Should the library suppress warnings about features disabled by a client program?
I see the following warning with GCC for ```cpp #include using json = nlohmann::ordered_json; using json_pointer = json::json_pointer; int main() { json j = {{"key", "value"}}; json_pointer ptr("/key"); auto value...