diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/vb-pp.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/vb-pp.c | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/vb-pp.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/vb-pp.c deleted file mode 100644 index 5ea209c5..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/vb-pp.c +++ /dev/null @@ -1,35 +0,0 @@ - -void f() { -if(0) -#pragma omp atomic -i++; -} - - -void f() { -if(0) -#if foo -i++; -#else -i+=2; -#endif -} - -void f() -{ -while(108) { -if(42) -#pragma omp critical -{ } -if(23) -#pragma omp critical -++i; -while (16) -{ } -int i = 15; -if(8) -#pragma omp atomic -i += 4; -} -} - |