parse.y Fix compile error
ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c6b31b76ee
commit
f8659dfd94
3
parse.y
3
parse.y
@ -1453,10 +1453,11 @@ stmt : keyword_alias fitem {SET_LEX_STATE(EXPR_FNAME|EXPR_FITEM);} fitem
|
||||
| stmt modifier_rescue stmt
|
||||
{
|
||||
/*%%%*/
|
||||
NODE *resq;
|
||||
YYLTYPE location;
|
||||
location.first_loc = @2.first_loc;
|
||||
location.last_loc = @3.last_loc;
|
||||
NODE *resq = new_resbody(0, remove_begin($3), 0, &location);
|
||||
resq = new_resbody(0, remove_begin($3), 0, &location);
|
||||
$$ = new_rescue(remove_begin($1), resq, 0, &@$);
|
||||
/*%
|
||||
$$ = dispatch2(rescue_mod, $1, $3);
|
||||
|
Loading…
x
Reference in New Issue
Block a user