1
Fork 0

Remove the $tcx:tt parameter from rustc_query_description

It's unnecessary.
This commit is contained in:
Joshua Nelson 2022-08-24 00:22:27 -05:00
parent 7b8e2a52ff
commit b061550ed3
2 changed files with 6 additions and 6 deletions

View file

@ -322,7 +322,7 @@ macro_rules! define_queries {
}
impl<'tcx> QueryDescription<QueryCtxt<'tcx>> for queries::$name<'tcx> {
rustc_query_description! { $name<'tcx> }
rustc_query_description! { $name }
type Cache = query_storage::$name<'tcx>;