From 55606c669dd75f85fd850cc22f163da846f89025 Mon Sep 17 00:00:00 2001 From: Damyan Pepper Date: Mon, 9 Mar 2026 17:35:29 -0700 Subject: [PATCH 1/2] Test: badly formatted file to trigger code formatter --- test-format.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test-format.cpp diff --git a/test-format.cpp b/test-format.cpp new file mode 100644 index 0000000000..2705d3416e --- /dev/null +++ b/test-format.cpp @@ -0,0 +1,13 @@ +// Test file with intentionally bad formatting +#include + +int main() { + int x=1; + int y =2; + if(x==y){ + printf("equal"); + }else{ + printf("not equal"); + } + return 0; +} From 2c1d26cb4a56aa041176fb1b60a12d7a54745b24 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 10 Mar 2026 00:37:54 +0000 Subject: [PATCH 2/2] chore: autopublish 2026-03-10T00:37:54Z --- test-format.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test-format.cpp b/test-format.cpp index 2705d3416e..a6ba9b8449 100644 --- a/test-format.cpp +++ b/test-format.cpp @@ -2,12 +2,12 @@ #include int main() { - int x=1; - int y =2; - if(x==y){ - printf("equal"); - }else{ - printf("not equal"); - } - return 0; + int x = 1; + int y = 2; + if (x == y) { + printf("equal"); + } else { + printf("not equal"); + } + return 0; }