Avoid implementing Debug for QueryConfig

This commit is contained in:
John Kåre Alsaker 2023-02-25 22:15:30 +01:00
parent 3fd7c4a17d
commit 3b26d71e04
4 changed files with 14 additions and 5 deletions

View file

@ -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 ()>
}