From 16f3b590e46062a0db728e7764dc64d23851c4db Mon Sep 17 00:00:00 2001 From: Scott Olson Date: Sat, 26 Nov 2016 19:18:39 -0800 Subject: [PATCH] Remove unnecessary qualification. --- src/interpreter/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter/mod.rs b/src/interpreter/mod.rs index b1b3081a2d7..59b3db7aa82 100644 --- a/src/interpreter/mod.rs +++ b/src/interpreter/mod.rs @@ -23,7 +23,7 @@ mod cast; mod vtable; mod value; -pub type MirRef<'tcx> = ::std::cell::Ref<'tcx, mir::Mir<'tcx>>; +pub type MirRef<'tcx> = Ref<'tcx, mir::Mir<'tcx>>; pub struct EvalContext<'a, 'tcx: 'a> { /// The results of the type checker, from rustc.