Remove box syntax from Box<BareFunctionDecl> construction
The type has 144 bytes according to compiler internal rustdoc.
This commit is contained in:
parent
3fa637dacb
commit
3d2494dbf2
1 changed files with 3 additions and 3 deletions
|
@ -1490,7 +1490,7 @@ impl<'tcx> Clean<'tcx, Type> for hir::Ty<'tcx> {
|
||||||
let lifetime = if !lifetime.is_elided() { Some(lifetime.clean(cx)) } else { None };
|
let lifetime = if !lifetime.is_elided() { Some(lifetime.clean(cx)) } else { None };
|
||||||
DynTrait(bounds, lifetime)
|
DynTrait(bounds, lifetime)
|
||||||
}
|
}
|
||||||
TyKind::BareFn(barefn) => BareFunction(box barefn.clean(cx)),
|
TyKind::BareFn(barefn) => BareFunction(Box::new(barefn.clean(cx))),
|
||||||
// Rustdoc handles `TyKind::Err`s by turning them into `Type::Infer`s.
|
// Rustdoc handles `TyKind::Err`s by turning them into `Type::Infer`s.
|
||||||
TyKind::Infer | TyKind::Err => Infer,
|
TyKind::Infer | TyKind::Err => Infer,
|
||||||
TyKind::Typeof(..) => panic!("unimplemented type {:?}", self.kind),
|
TyKind::Typeof(..) => panic!("unimplemented type {:?}", self.kind),
|
||||||
|
@ -1555,12 +1555,12 @@ fn clean_ty<'tcx>(this: Ty<'tcx>, cx: &mut DocContext<'tcx>, def_id: Option<DefI
|
||||||
let ty = cx.tcx.lift(this).expect("FnPtr lift failed");
|
let ty = cx.tcx.lift(this).expect("FnPtr lift failed");
|
||||||
let sig = ty.fn_sig(cx.tcx);
|
let sig = ty.fn_sig(cx.tcx);
|
||||||
let decl = clean_fn_decl_from_did_and_sig(cx, None, sig);
|
let decl = clean_fn_decl_from_did_and_sig(cx, None, sig);
|
||||||
BareFunction(box BareFunctionDecl {
|
BareFunction(Box::new(BareFunctionDecl {
|
||||||
unsafety: sig.unsafety(),
|
unsafety: sig.unsafety(),
|
||||||
generic_params: Vec::new(),
|
generic_params: Vec::new(),
|
||||||
decl,
|
decl,
|
||||||
abi: sig.abi(),
|
abi: sig.abi(),
|
||||||
})
|
}))
|
||||||
}
|
}
|
||||||
ty::Adt(def, substs) => {
|
ty::Adt(def, substs) => {
|
||||||
let did = def.did();
|
let did = def.did();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue