some indentation made prev patch pretty; removed it
This commit is contained in:
4
tccgen.c
4
tccgen.c
@ -3057,7 +3057,6 @@ static void post_type_args(CType *type, AttributeDef *ad)
|
||||
AttributeDef ad1;
|
||||
CType pt;
|
||||
|
||||
if (tok == '(') {
|
||||
/* function declaration */
|
||||
next();
|
||||
l = 0;
|
||||
@ -3125,14 +3124,12 @@ static void post_type_args(CType *type, AttributeDef *ad)
|
||||
type->t = t1 | VT_FUNC;
|
||||
type->ref = s;
|
||||
}
|
||||
}
|
||||
|
||||
static void post_type_array(CType *type, AttributeDef *ad)
|
||||
{
|
||||
int n, t1;
|
||||
Sym *s;
|
||||
|
||||
if (tok == '[') {
|
||||
/* array definition */
|
||||
next();
|
||||
if (tok == TOK_RESTRICT1)
|
||||
@ -3158,7 +3155,6 @@ static void post_type_array(CType *type, AttributeDef *ad)
|
||||
type->t = t1 | VT_ARRAY | VT_PTR;
|
||||
type->ref = s;
|
||||
}
|
||||
}
|
||||
|
||||
/* Parse a type declaration (except basic type), and return the type
|
||||
in 'type'. 'td' is a bitmask indicating which kind of type decl is
|
||||
|
||||
Reference in New Issue
Block a user