1
Fork 0

Rollup merge of #117963 - nnethercote:rustc_query_system, r=compiler-errors

`rustc_query_system` cleanups

Minor cleanups.

r? `@compiler-errors`
This commit is contained in:
Takayuki Maeda 2023-11-17 12:56:32 +09:00 committed by GitHub
commit 68f5762ff0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 29 additions and 34 deletions

View file

@ -8,8 +8,8 @@ mod dep_node;
pub use rustc_query_system::dep_graph::debug::EdgeFilter;
pub use rustc_query_system::dep_graph::{
debug::DepNodeFilter, hash_result, DepContext, DepGraphQuery, DepNodeColor, DepNodeIndex, Deps,
SerializedDepGraph, SerializedDepNodeIndex, TaskDeps, TaskDepsRef, WorkProduct, WorkProductId,
debug::DepNodeFilter, hash_result, DepContext, DepGraphQuery, DepNodeIndex, Deps,
SerializedDepGraph, SerializedDepNodeIndex, TaskDepsRef, WorkProduct, WorkProductId,
WorkProductMap,
};