From e5933b1d64f63734d116478f8f00451249565d27 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Thu, 20 Aug 2026 08:11:06 +0200 Subject: [PATCH] Reformat parser_callback_t example with astyle The file uses "json & /*parsed*/" in three lambda parameter lists, which astyle rewrites to "json& /*parsed*/" per --align-reference=type. The drift went unnoticed because CI never format-checked the documentation examples; "make pretty" does cover them. Signed-off-by: Niels Lohmann --- docs/mkdocs/docs/examples/parser_callback_t.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/mkdocs/docs/examples/parser_callback_t.cpp b/docs/mkdocs/docs/examples/parser_callback_t.cpp index 45794cca6..99c4298e8 100644 --- a/docs/mkdocs/docs/examples/parser_callback_t.cpp +++ b/docs/mkdocs/docs/examples/parser_callback_t.cpp @@ -9,13 +9,13 @@ int main() auto text = R"({"IDs": [116, 943], "Width": 800})"; // 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; }); // 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; }); @@ -33,7 +33,7 @@ int main() }); // 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; });