mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
chore: use shorthand initializer
This commit is contained in:
parent
5367673014
commit
84e261e5cb
@ -80,7 +80,7 @@ fn generate_handler(cx: &ExtCtxt<'_>, handler: Ident, span: Span, sig_span: Span
|
||||
let params = thin_vec![cx.param(span, size, ty_usize.clone()), cx.param(span, align, ty_usize)];
|
||||
let decl = cx.fn_decl(params, never);
|
||||
let header = FnHeader { safety: Safety::Unsafe(span), ..FnHeader::default() };
|
||||
let sig = FnSig { decl, header, span: span };
|
||||
let sig = FnSig { decl, header, span };
|
||||
|
||||
let body = Some(cx.block_expr(call));
|
||||
let kind = ItemKind::Fn(Box::new(Fn {
|
||||
|
@ -588,7 +588,7 @@ pub fn report_cycle<'a>(
|
||||
cycle_stack,
|
||||
stack_bottom: stack[0].query.description.to_owned(),
|
||||
alias,
|
||||
cycle_usage: cycle_usage,
|
||||
cycle_usage,
|
||||
stack_count,
|
||||
note_span: (),
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user