Merge pull request 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 where
M: RawMutex, M: RawMutex,
{ {