From b01afb0189b1903f5000c329769f1785f39c7573 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Wed, 18 Sep 2024 21:00:08 +0900 Subject: [PATCH] =?UTF-8?q?fixup!=20`try=5Fmap=5Fguard`=E3=81=8B=E3=82=89`?= =?UTF-8?q?T:=20'static`=E3=82=92=E5=A4=96=E3=81=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/voicevox_core/src/__internal/interop/raii.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/voicevox_core/src/__internal/interop/raii.rs b/crates/voicevox_core/src/__internal/interop/raii.rs index 2423d6bb7..34eee4844 100644 --- a/crates/voicevox_core/src/__internal/interop/raii.rs +++ b/crates/voicevox_core/src/__internal/interop/raii.rs @@ -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 {