diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/Issue_3169.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/Issue_3169.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/Issue_3169.c b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/Issue_3169.c deleted file mode 100644 index bf67ca55..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/Issue_3169.c +++ /dev/null @@ -1,30 +0,0 @@ -#include <stdint.h> - -void bar (void) -{ - - int32_t result; - const int32_t other - = 7; -} - -#define P(bits) \ - void foo(void) \ - { \ - \ - int##bits##_t result15; \ - const int##bits##_t other \ - = 7; \ - } - -#define Q(value) \ - void baz(void) \ - { \ - \ - int32_t result24; \ - const int32_t other \ - = 7; \ - } - -P(32) -Q(7) |