Skip to content

Commit

Permalink
fixup! try_map_guardからT: 'staticを外す
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Sep 18, 2024
1 parent 9555cfc commit b01afb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/voicevox_core/src/__internal/interop/raii.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ where
marker: PhantomData<&'lock &'target ()>,
}

impl<'lock, 'target: 'lock, G: 'lock, T: 'target> Deref for MappedLock<'lock, 'target, G, T> {
impl<'lock, 'target, G: 'lock, T: 'target> Deref for MappedLock<'lock, 'target, G, T> {
type Target = T;

fn deref(&self) -> &Self::Target {
Expand Down

0 comments on commit b01afb0

Please sign in to comment.