about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/interpret/mod.rs
diff options
context:
space:
mode:
authorb-naber <bn263@gmx.de>2022-04-05 16:33:42 +0200
committerb-naber <bn263@gmx.de>2022-04-21 15:53:26 +0200
commit1157dc7167d13a9bdcafd30b8ad0ecf5ae5faa7f (patch)
treec7ecab9600453754e9e87d9ad86e4c392874cc4c /compiler/rustc_const_eval/src/interpret/mod.rs
parenteaf8cdaa0bcf7bc188da8d8d0a35126cf37b0580 (diff)
downloadrust-1157dc7167d13a9bdcafd30b8ad0ecf5ae5faa7f.tar.gz
rust-1157dc7167d13a9bdcafd30b8ad0ecf5ae5faa7f.zip
implement valtree -> constvalue conversion
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret/mod.rs')
-rw-r--r--compiler/rustc_const_eval/src/interpret/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/mod.rs b/compiler/rustc_const_eval/src/interpret/mod.rs
index 2b9fe565997..dba746e72e2 100644
--- a/compiler/rustc_const_eval/src/interpret/mod.rs
+++ b/compiler/rustc_const_eval/src/interpret/mod.rs
@@ -14,7 +14,7 @@ mod terminator;
 mod traits;
 mod util;
 mod validity;
-mod visitor;
+pub(crate) mod visitor;
 
 pub use rustc_middle::mir::interpret::*; // have all the `interpret` symbols in one place: here