about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/dep_graph/mod.rs
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2021-05-22 11:46:54 +0200
committerCamille GILLOT <gillot.camille@gmail.com>2021-05-22 14:14:23 +0200
commita50f1e949b4f7b3b35ee0be041cbf490d6e21314 (patch)
treeaf88962900ade97c2de1cdd8379a3e2dabab64cf /compiler/rustc_query_system/src/dep_graph/mod.rs
parentfa72878a61f2b0a2127fe7d700724642fc79ec66 (diff)
downloadrust-a50f1e949b4f7b3b35ee0be041cbf490d6e21314.tar.gz
rust-a50f1e949b4f7b3b35ee0be041cbf490d6e21314.zip
Get rid of PreviousDepGraph.
Diffstat (limited to 'compiler/rustc_query_system/src/dep_graph/mod.rs')
-rw-r--r--compiler/rustc_query_system/src/dep_graph/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_query_system/src/dep_graph/mod.rs b/compiler/rustc_query_system/src/dep_graph/mod.rs
index 1b6ecf3e637..15e2633c4f1 100644
--- a/compiler/rustc_query_system/src/dep_graph/mod.rs
+++ b/compiler/rustc_query_system/src/dep_graph/mod.rs
@@ -1,13 +1,11 @@
 pub mod debug;
 mod dep_node;
 mod graph;
-mod prev;
 mod query;
 mod serialized;
 
 pub use dep_node::{DepNode, DepNodeParams, WorkProductId};
 pub use graph::{hash_result, DepGraph, DepNodeColor, DepNodeIndex, TaskDeps, WorkProduct};
-pub use prev::PreviousDepGraph;
 pub use query::DepGraphQuery;
 pub use serialized::{SerializedDepGraph, SerializedDepNodeIndex};