mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
crown: fix build for rust 1.82 on musl (#34307)
Signed-off-by: LN Liberda <lauren@selfisekai.rocks>
This commit is contained in:
parent
c8626985ca
commit
06dce314f8
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ fn is_unrooted_ty<'tcx>(
|
||||||
},
|
},
|
||||||
ty::Ref(..) => false, // don't recurse down &ptrs
|
ty::Ref(..) => false, // don't recurse down &ptrs
|
||||||
ty::RawPtr(..) => false, // don't recurse down *ptrs
|
ty::RawPtr(..) => false, // don't recurse down *ptrs
|
||||||
ty::FnDef(..) | ty::FnPtr(_) => false,
|
ty::FnDef(..) | ty::FnPtr(..) => false,
|
||||||
ty::Alias(
|
ty::Alias(
|
||||||
ty::AliasTyKind::Projection | ty::AliasTyKind::Inherent | ty::AliasTyKind::Weak,
|
ty::AliasTyKind::Projection | ty::AliasTyKind::Inherent | ty::AliasTyKind::Weak,
|
||||||
ty,
|
ty,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue