diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-20 14:05:37 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-20 14:05:37 -0700 |
commit | 323421db6567f3402e0ff9dcf548269e6d7b5497 (patch) | |
tree | 513d79aec58a74ef75b4ae29f48474a5e4ac1586 /tests/015-define-object-with-parens.c | |
parent | 660bda057a0f9c83625e798c0f719080d11e9431 (diff) |
Remove "unnecessary" whitespace from some tests.
This whitespace was not part of anything being tested, and it
introduces differences (that we don't actually care about) between the
output of "gcc -E" and glcpp.
Just eliminate this extra whitespace to reduce spurious test-case
failures.
Diffstat (limited to 'tests/015-define-object-with-parens.c')
-rw-r--r-- | tests/015-define-object-with-parens.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/015-define-object-with-parens.c b/tests/015-define-object-with-parens.c index 10bf7e31a3..558da9c617 100644 --- a/tests/015-define-object-with-parens.c +++ b/tests/015-define-object-with-parens.c @@ -1,4 +1,4 @@ -#define foo ( ) 1 +#define foo ()1 foo() -#define bar () 2 -bar( ) +#define bar ()2 +bar() |