summaryrefslogtreecommitdiff
path: root/compiler/rustc_query_impl
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2023-02-25 22:15:30 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2023-02-26 23:35:52 +0100
commit3b26d71e04fd61deb42656b28371e097ab35c4aa (patch)
tree9409204a148fcbd02b41383245cd49564d61b9a2 /compiler/rustc_query_impl
parent3fd7c4a17d5c2b56dcd10adc8ee692abcc3be7f9 (diff)
downloadrust-3b26d71e04fd61deb42656b28371e097ab35c4aa.tar.gz
Avoid implementing Debug for QueryConfig
Diffstat (limited to 'compiler/rustc_query_impl')
-rw-r--r--compiler/rustc_query_impl/src/plumbing.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_impl/src/plumbing.rs b/compiler/rustc_query_impl/src/plumbing.rs
index c37dcc048d2..dfe172fc3ff 100644
--- a/compiler/rustc_query_impl/src/plumbing.rs
+++ b/compiler/rustc_query_impl/src/plumbing.rs
@@ -462,7 +462,7 @@ macro_rules! define_queries {
use std::marker::PhantomData;
$(
- #[derive(Copy, Clone, Debug)]
+ #[derive(Copy, Clone)]
pub struct $name<'tcx> {
data: PhantomData<&'tcx ()>
}