-
From the perspective of casual user the most natural way of switching the code base to ordered_json seems to be replacing using json = nlohmann::json; with using json = nlohmann::ordered_json; And the things mostly work. However, this: json::object_t jobj({ { "product", "one" } }); does not compile however it compiles just fine with using json = nlohmann::json; |
Beta Was this translation helpful? Give feedback.
Answered by
nlohmann
Mar 7, 2022
Replies: 1 comment
Answer selected by
nlohmann
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See #3343 - fixed with #3370.