diff options
| author | lcnr <rust@lcnr.de> | 2024-07-11 23:13:12 +0200 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-07-12 06:30:19 -0400 |
| commit | 15f770b1436c2be227c9338040e53d64f211fe63 (patch) | |
| tree | 34ee04f2e823e1e6214fcc8154c84e8f52e51323 /compiler/rustc_query_system | |
| parent | f56b2074c688f09be47e6ca82f604eabaa0b8f35 (diff) | |
| download | rust-15f770b1436c2be227c9338040e53d64f211fe63.tar.gz rust-15f770b1436c2be227c9338040e53d64f211fe63.zip | |
enable fuzzing of `SearchGraph`
fully move it into `rustc_type_ir` and make it independent of `Interner`.
Diffstat (limited to 'compiler/rustc_query_system')
| -rw-r--r-- | compiler/rustc_query_system/src/cache.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_system/src/cache.rs b/compiler/rustc_query_system/src/cache.rs index 6e862db0b25..d8a5bdba7b8 100644 --- a/compiler/rustc_query_system/src/cache.rs +++ b/compiler/rustc_query_system/src/cache.rs @@ -40,7 +40,7 @@ impl<Key: Eq + Hash, Value: Clone> Cache<Key, Value> { } } -#[derive(Clone, Eq, PartialEq)] +#[derive(Debug, Clone, Eq, PartialEq)] pub struct WithDepNode<T> { dep_node: DepNodeIndex, cached_value: T, |
