From 3b0c3b8206964b85bf3716c962d26dd15c4f285f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 18 Nov 2024 22:24:33 +0900 Subject: Remove uncrustify-trinity. It is no longer necessary to maintain a customize trinity version. Upstream version can be used as is. Signed-off-by: Michele Calgaro --- .../tests/expected/c/02410-ifdef-indent.c | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/02410-ifdef-indent.c (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/02410-ifdef-indent.c') diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/02410-ifdef-indent.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/02410-ifdef-indent.c deleted file mode 100644 index e71d8cf3..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/02410-ifdef-indent.c +++ /dev/null @@ -1,43 +0,0 @@ -#ifdef foo - #include -#else - #include -#endif - -#ifdef foo -/* Commentary for func1() */ -void func1(); - -/* Commentary for func2() */ -void func2(); -#endif - -int -show_interrupts(struct seq_file *p, void *v) -{ - #ifndef CONFIG_SMP - a++; - #else - for (b = 0; b < 9; b++) - if (b & 1) - k++; - #endif - - if (v) - { - bar(v); - #if DEBUG == 1 - printf("yup\n"); - #endif - } -} - -void foo() -{ - int i=0; - #if DEBUG == 1 - i--; - #endif - i++; -} - -- cgit v1.2.1