Skip to content

Commit a68779f

Browse files
committed
use crate:: import to make edition port easier later
1 parent 8153449 commit a68779f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ use mono_hash_map::MonoHashMap;
4848
use stacked_borrows::{EvalContextExt as StackedBorEvalContextExt};
4949

5050
// Used by priroda
51-
pub use stacked_borrows::{Borrow, Stack, Stacks, Mut as MutBorrow, BorStackItem};
51+
pub use crate::stacked_borrows::{Borrow, Stack, Stacks, Mut as MutBorrow, BorStackItem};
5252

5353
/// Insert rustc arguments at the beginning of the argument listthat miri wants to be
5454
/// set per default, for maximal validation power.

src/stacked_borrows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::cell::RefCell;
33
use rustc::ty::{self, Ty, layout::Size};
44
use rustc::hir;
55

6-
use super::{
6+
use crate::{
77
MemoryKind, MiriMemoryKind, RangeMap, EvalResult, AllocId,
88
Pointer, PlaceTy,
99
};

0 commit comments

Comments
 (0)