diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2020-11-25 15:08:31 -0500 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2020-11-25 15:08:51 -0500 |
| commit | 7a9aa4f9808fe37afb581ba54884612df2034a75 (patch) | |
| tree | d9cc44f735d86d21b094402323b5216995f1647e /compiler/rustc_query_system | |
| parent | 6a9dbd2e0ec6b4c882668c0d35272b2ee4c03c6e (diff) | |
| download | rust-7a9aa4f9808fe37afb581ba54884612df2034a75.tar.gz rust-7a9aa4f9808fe37afb581ba54884612df2034a75.zip | |
Fix rebase fallout
Diffstat (limited to 'compiler/rustc_query_system')
| -rw-r--r-- | compiler/rustc_query_system/src/dep_graph/graph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_system/src/dep_graph/graph.rs b/compiler/rustc_query_system/src/dep_graph/graph.rs index cd81f481e69..ac37b296b53 100644 --- a/compiler/rustc_query_system/src/dep_graph/graph.rs +++ b/compiler/rustc_query_system/src/dep_graph/graph.rs @@ -709,7 +709,7 @@ impl<K: DepKind> DepGraph<K> { // from the old incremental cache into the new cache that we serialize // and the end of this compilation session. if dep_node.kind.can_reconstruct_query_key() { - tcx.register_reused_dep_path_hash(DefPathHash(dep_node.hash)); + tcx.register_reused_dep_path_hash(DefPathHash(dep_node.hash.into())); } // ... emitting any stored diagnostic ... |
