From 4e2330ad30b2ee60a2c016abf71884f571e4ae5f Mon Sep 17 00:00:00 2001 From: Daniel Polo <106583643+danielPoloWork@users.noreply.github.com> Date: Mon, 15 Jun 2026 20:12:20 +0200 Subject: [PATCH] chore(packaging-smoke): clang-format the vcpkg smoke consumer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The vcpkg smoke consumer's std::printf call was manually wrapped across two lines; the current CI clang-format (bumped with the Node 24 action update in the recent CI refresh) collapses it onto a single 84-column line, so the format gate flagged it (smoke.cpp:22). The argument list fits comfortably under the 120-column soft limit. Latent since the file landed (#83): no PR touching src/** ran the C++ format job in between — the docs-only PRs since are path-filtered out — so the violation only surfaced now. Pure formatting; no behaviour change. Co-Authored-By: Claude Opus 4.8 (1M context) --- ci/packaging-smoke/vcpkg-consumer/src/smoke.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/packaging-smoke/vcpkg-consumer/src/smoke.cpp b/ci/packaging-smoke/vcpkg-consumer/src/smoke.cpp index 7a6040e..f4ba2cd 100644 --- a/ci/packaging-smoke/vcpkg-consumer/src/smoke.cpp +++ b/ci/packaging-smoke/vcpkg-consumer/src/smoke.cpp @@ -19,7 +19,6 @@ int main() { const int got = *value; typed.destroy(value); - std::printf("vcpkg smoke OK: got=%d block_size=%zu\n", got, - pool.block_size()); + std::printf("vcpkg smoke OK: got=%d block_size=%zu\n", got, pool.block_size()); return got == 7 ? 0 : 1; }