some indentation made prev patch pretty; removed it

This commit is contained in:
Joe Soroka
2011-03-08 01:59:50 -08:00
parent 89059f94c0
commit 545a37b306

View File

@ -3057,7 +3057,6 @@ static void post_type_args(CType *type, AttributeDef *ad)
AttributeDef ad1;
CType pt;
if (tok == '(') {
/* function declaration */
next();
l = 0;
@ -3124,7 +3123,6 @@ static void post_type_args(CType *type, AttributeDef *ad)
s->next = first;
type->t = t1 | VT_FUNC;
type->ref = s;
}
}
static void post_type_array(CType *type, AttributeDef *ad)
@ -3132,7 +3130,6 @@ static void post_type_array(CType *type, AttributeDef *ad)
int n, t1;
Sym *s;
if (tok == '[') {
/* array definition */
next();
if (tok == TOK_RESTRICT1)
@ -3157,7 +3154,6 @@ static void post_type_array(CType *type, AttributeDef *ad)
ARRAY_RESIZE(s->r) = 1;
type->t = t1 | VT_ARRAY | VT_PTR;
type->ref = s;
}
}
/* Parse a type declaration (except basic type), and return the type