summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim.hulthe@mullvad.net>2025-02-19 19:18:43 +0100
committerJoakim Hulthe <joakim.hulthe@mullvad.net>2025-02-25 13:43:55 +0100
commit148e43dc21254caab5edcabfad6bbda957208e0e (patch)
tree1d9f0950f9a3209f5ad4d928f4d342a9da7c2586
parent927d8053281779a0a6fac7c48449311a4b950667 (diff)
downloadmullvadvpn-148e43dc21254caab5edcabfad6bbda957208e0e.tar.xz
mullvadvpn-148e43dc21254caab5edcabfad6bbda957208e0e.zip
Remove unnecessary impl Sync
-rw-r--r--talpid-windows/src/io.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/talpid-windows/src/io.rs b/talpid-windows/src/io.rs
index cd7b0ae98a..8a8966f620 100644
--- a/talpid-windows/src/io.rs
+++ b/talpid-windows/src/io.rs
@@ -14,8 +14,6 @@ pub struct Overlapped {
// SAFETY: Both OVERLAPPED and Event is used for async I/O, so this *should* be safe.
unsafe impl Send for Overlapped {}
-// SAFETY: See above.
-unsafe impl Sync for Overlapped {}
impl Overlapped {
/// Creates an `OVERLAPPED` object with `hEvent` set.