libsyntax: Fix long line
This commit is contained in:
parent
dc2f775037
commit
b68d287780
1 changed files with 2 additions and 1 deletions
|
@ -2231,7 +2231,8 @@ impl parser {
|
||||||
self.expect(token::LBRACE);
|
self.expect(token::LBRACE);
|
||||||
let {inner, next} = maybe_parse_inner_attrs_and_next(self,
|
let {inner, next} = maybe_parse_inner_attrs_and_next(self,
|
||||||
parse_attrs);
|
parse_attrs);
|
||||||
return (inner, self.parse_block_tail_(lo, if us { unsafe_blk } else { default_blk }, next));
|
let blk_check_mode = if us { unsafe_blk } else { default_blk };
|
||||||
|
return (inner, self.parse_block_tail_(lo, blk_check_mode, next));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_block_no_value() -> blk {
|
fn parse_block_no_value() -> blk {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue