Merge pull request #3052 from jvatic/main

embassy-sync: remove T: Send for Signal<M, T>
This commit is contained in:
Ulf Lilleengen 2024-06-06 06:47:39 +00:00 committed by GitHub
commit 4a4b8c9b8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,7 +65,7 @@ where
}
}
impl<M, T: Send> Signal<M, T>
impl<M, T> Signal<M, T>
where
M: RawMutex,
{