From 4776b9091c910b7c1392580f505720b3db108aaa Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 6 Sep 2026 11:29:33 +0200 Subject: [PATCH] Fix astyle indentation of #include inside #ifdef in unit-items-cpp17.cpp This repo's astyle style keeps preprocessor directives at column 0 even inside #ifdef blocks. The new tests/src/unit-items-cpp17.cpp had its #include /#include indented, which made the 'check' CI job's amalgamation/formatting diff non-empty and failed the aggregate check. Signed-off-by: Niels Lohmann --- tests/src/unit-items-cpp17.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/unit-items-cpp17.cpp b/tests/src/unit-items-cpp17.cpp index fd6233ccb..577dcea56 100644 --- a/tests/src/unit-items-cpp17.cpp +++ b/tests/src/unit-items-cpp17.cpp @@ -17,8 +17,8 @@ using nlohmann::json; #ifdef JSON_HAS_CPP_17 - #include - #include +#include +#include TEST_CASE("items()") {