Remove unnecessary qualification.

This commit is contained in:
Scott Olson 2016-11-26 19:18:39 -08:00
parent 78b29b360a
commit 16f3b590e4

View File

@ -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.