remove dangling spaces

This commit is contained in:
mrdudz
2022-04-17 16:07:52 +02:00
parent b54fb2dfd1
commit 9d3cdc5a10
89 changed files with 459 additions and 459 deletions

View File

@@ -1,7 +1,7 @@
/* bug #1098 Empty enumerator-list */
/* The C Standard requires that something exists between the braces for
/* The C Standard requires that something exists between the braces for
* enum, struct, and union. */
enum {

View File

@@ -1,7 +1,7 @@
/* bug #1098 Empty enumerator-list */
/* The C Standard requires that something exists between the braces for
/* The C Standard requires that something exists between the braces for
* enum, struct, and union. */
struct {

View File

@@ -1,7 +1,7 @@
/* bug #1098 Empty enumerator-list */
/* The C Standard requires that something exists between the braces for
/* The C Standard requires that something exists between the braces for
* enum, struct, and union. */
union {

View File

@@ -1,5 +1,5 @@
/* pr #1110 - not only should the current test case for #975 compile and work,
/* pr #1110 - not only should the current test case for #975 compile and work,
* but also the code piece below fail to compile and generate errors like commented: */
static const unsigned char array[3]; /* OK */
@@ -7,7 +7,7 @@ static const unsigned char array[] = { 0, 1, 2 }; /* OK - complete definition*
static const unsigned char array[3]; /* OK */
static const unsigned char array[]; /* OK */
static const unsigned char array[] = { 1, 2, 3 }; /* Error - redefinition */
static const unsigned char array[4]; /* Error - conflicting size */
static const unsigned char array[4]; /* Error - conflicting size */
int main(void)
{