Clean up useless pub use.

This commit is contained in:
Scott Olson 2016-12-21 17:15:03 -08:00
parent 2a5029ed6d
commit 9093188a5c
2 changed files with 2 additions and 5 deletions

@ -16,10 +16,7 @@ use error::{EvalError, EvalResult};
use lvalue::{Global, GlobalId, Lvalue, LvalueExtra};
use memory::{Memory, Pointer};
use operator;
use value::{PrimVal, PrimValKind};
// FIXME(solson): Remove this.
pub use value::Value;
use value::{PrimVal, PrimValKind, Value};
pub type MirRef<'tcx> = Ref<'tcx, mir::Mir<'tcx>>;

@ -43,7 +43,6 @@ pub use eval_context::{
Frame,
ResourceLimits,
StackPopCleanup,
Value,
eval_main,
run_mir_passes,
};
@ -62,4 +61,5 @@ pub use memory::{
pub use value::{
PrimVal,
PrimValKind,
Value,
};