diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-08-30 09:12:53 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-08-30 13:17:40 -0700 |
| commit | 5c279a40aeba4c3df968aa2d7c2ccc37f3dfd9df (patch) | |
| tree | 30f6b676fdce1c0340e6e21bba90b3a56f224047 /src/librustc/dep_graph/dep_node.rs | |
| parent | 16bbff0277e1b3463fdeb969179bb0da8db4eab7 (diff) | |
| parent | 942c8dcf19f2766d1f76e387fdeb96f6435ef02c (diff) | |
| download | rust-5c279a40aeba4c3df968aa2d7c2ccc37f3dfd9df.tar.gz rust-5c279a40aeba4c3df968aa2d7c2ccc37f3dfd9df.zip | |
Merge branch 'hide-trait-map' into rollup
Diffstat (limited to 'src/librustc/dep_graph/dep_node.rs')
| -rw-r--r-- | src/librustc/dep_graph/dep_node.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/librustc/dep_graph/dep_node.rs b/src/librustc/dep_graph/dep_node.rs index 5114b94571d..ea827fb3139 100644 --- a/src/librustc/dep_graph/dep_node.rs +++ b/src/librustc/dep_graph/dep_node.rs @@ -62,6 +62,7 @@ use hir::def_id::{CrateNum, DefId}; use hir::map::DefPathHash; +use hir::HirId; use ich::Fingerprint; use ty::{TyCtxt, Instance, InstanceDef}; @@ -528,6 +529,8 @@ define_dep_nodes!( <'tcx> [] ExternCrate(DefId), [] LintLevels, [] Specializes { impl1: DefId, impl2: DefId }, + [] InScopeTraits(HirId), + [] ModuleExports(HirId), ); trait DepNodeParams<'a, 'gcx: 'tcx + 'a, 'tcx: 'a> : fmt::Debug { |
