about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2018-11-13 11:14:18 +0100
committerRalf Jung <post@ralfj.de>2018-11-15 08:51:32 +0100
commitc5bc83b60d10492f8e71461b03f5adb8505e53d6 (patch)
tree9c38315c2e85cedd0ab45e566e0e9c9768f82a54
parent4ec0ba9545f7c848aafc0bc1b8762507395edd41 (diff)
downloadrust-c5bc83b60d10492f8e71461b03f5adb8505e53d6.tar.gz
rust-c5bc83b60d10492f8e71461b03f5adb8505e53d6.zip
expose MutValueVisitor
-rw-r--r--src/librustc_mir/interpret/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/interpret/mod.rs b/src/librustc_mir/interpret/mod.rs
index 82fe08fa038..96ea0d50949 100644
--- a/src/librustc_mir/interpret/mod.rs
+++ b/src/librustc_mir/interpret/mod.rs
@@ -39,6 +39,6 @@ pub use self::machine::{Machine, AllocMap, MayLeak};
 
 pub use self::operand::{ScalarMaybeUndef, Immediate, ImmTy, Operand, OpTy};
 
-pub use self::visitor::ValueVisitor;
+pub use self::visitor::{ValueVisitor, MutValueVisitor};
 
 pub use self::validity::RefTracking;