Reformat the parser_callback example with astyle

#5386 reformatted this example on develop and extended the CI format check to
cover docs/mkdocs/docs/examples, which this branch predates. astyle rewrites
"json & /*parsed*/" to "json& /*parsed*/" per --align-reference=type; the result
is byte-identical to develop's copy.

Signed-off-by: Niels Lohmann <mail@nlohmann.me>
This commit is contained in:
Niels Lohmann
2026-08-21 04:51:10 +02:00
parent 818be76082
commit f94f54a529
@@ -9,13 +9,13 @@ int main()
auto text = R"({"IDs": [116, 943], "Width": 800})"; auto text = R"({"IDs": [116, 943], "Width": 800})";
// discard the array when the parser reads its opening bracket // discard the array when the parser reads its opening bracket
json j_array_start = json::parse(text, [](int /*depth*/, json::parse_event_t event, json & /*parsed*/) json j_array_start = json::parse(text, [](int /*depth*/, json::parse_event_t event, json& /*parsed*/)
{ {
return event != json::parse_event_t::array_start; return event != json::parse_event_t::array_start;
}); });
// discard the same array when the parser reads its closing bracket // discard the same array when the parser reads its closing bracket
json j_array_end = json::parse(text, [](int /*depth*/, json::parse_event_t event, json & /*parsed*/) json j_array_end = json::parse(text, [](int /*depth*/, json::parse_event_t event, json& /*parsed*/)
{ {
return event != json::parse_event_t::array_end; return event != json::parse_event_t::array_end;
}); });
@@ -33,7 +33,7 @@ int main()
}); });
// discard the top-level object // discard the top-level object
json j_root = json::parse(text, [](int /*depth*/, json::parse_event_t event, json & /*parsed*/) json j_root = json::parse(text, [](int /*depth*/, json::parse_event_t event, json& /*parsed*/)
{ {
return event != json::parse_event_t::object_end; return event != json::parse_event_t::object_end;
}); });