@@ -73,7 +73,7 @@ use std::{
73
73
74
74
use base_db:: {
75
75
impl_intern_key,
76
- salsa:: { self , impl_intern_value_trivial } ,
76
+ salsa:: { self , InternValueTrivial } ,
77
77
CrateId ,
78
78
} ;
79
79
use hir_expand:: {
@@ -187,7 +187,7 @@ pub trait ItemTreeLoc {
187
187
macro_rules! impl_intern {
188
188
( $id: ident, $loc: ident, $intern: ident, $lookup: ident) => {
189
189
impl_intern_key!( $id) ;
190
- impl_intern_value_trivial! ( $loc) ;
190
+ impl InternValueTrivial for $loc { }
191
191
impl_intern_lookup!( DefDatabase , $id, $loc, $intern, $lookup) ;
192
192
} ;
193
193
}
@@ -535,7 +535,7 @@ pub struct TypeOrConstParamId {
535
535
pub parent : GenericDefId ,
536
536
pub local_id : LocalTypeOrConstParamId ,
537
537
}
538
- impl_intern_value_trivial ! ( TypeOrConstParamId ) ;
538
+ impl InternValueTrivial for TypeOrConstParamId { }
539
539
540
540
/// A TypeOrConstParamId with an invariant that it actually belongs to a type
541
541
#[ derive( Debug , Clone , Copy , PartialEq , Eq , Hash ) ]
@@ -597,7 +597,7 @@ pub struct LifetimeParamId {
597
597
pub local_id : LocalLifetimeParamId ,
598
598
}
599
599
pub type LocalLifetimeParamId = Idx < generics:: LifetimeParamData > ;
600
- impl_intern_value_trivial ! ( LifetimeParamId ) ;
600
+ impl InternValueTrivial for LifetimeParamId { }
601
601
602
602
#[ derive( Debug , Clone , Copy , PartialEq , Eq , Hash ) ]
603
603
pub enum ItemContainerId {
0 commit comments