Make type alias private
This commit is contained in:
parent
413a12909f
commit
a75c792888
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ use crate::dataflow::{self, Analysis};
|
|||
// We are using `MaybeMutBorrowedLocals` as a proxy for whether an item may have been mutated
|
||||
// through a pointer prior to the given point. This is okay even though `MaybeMutBorrowedLocals`
|
||||
// kills locals upon `StorageDead` because a local will never be used after a `StorageDead`.
|
||||
pub type IndirectlyMutableResults<'mir, 'tcx> =
|
||||
type IndirectlyMutableResults<'mir, 'tcx> =
|
||||
dataflow::ResultsCursor<'mir, 'tcx, MaybeMutBorrowedLocals<'mir, 'tcx>>;
|
||||
|
||||
struct QualifCursor<'a, 'mir, 'tcx, Q: Qualif> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue