mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-02-02 09:46:06 +00:00
Remove obsolete type argument
This commit is contained in:
parent
514a31331b
commit
01d7aab603
1 changed files with 2 additions and 2 deletions
|
@ -114,7 +114,7 @@ where
|
|||
unsafe { std::mem::transmute(data) }
|
||||
}
|
||||
|
||||
pub fn intern_id<'db, T: Lookup<C::Data<'db>>>(
|
||||
pub fn intern_id<'db>(
|
||||
&'db self,
|
||||
db: &'db dyn crate::Database,
|
||||
data: impl Lookup<C::Data<'db>>,
|
||||
|
@ -123,7 +123,7 @@ where
|
|||
}
|
||||
|
||||
/// Intern data to a unique reference.
|
||||
pub fn intern<'db, T: Lookup<C::Data<'db>>>(
|
||||
pub fn intern<'db>(
|
||||
&'db self,
|
||||
db: &'db dyn crate::Database,
|
||||
data: impl Lookup<C::Data<'db>>,
|
||||
|
|
Loading…
Reference in a new issue