From 6e4e81429c1aaa41bc414f2bfe2285150ed4f3c4 Mon Sep 17 00:00:00 2001 From: Lofty Date: Tue, 16 Jan 2024 01:56:18 +0000 Subject: [PATCH] rust: nets isn't send/sync --- rust/nextpnr/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/rust/nextpnr/src/lib.rs b/rust/nextpnr/src/lib.rs index a025c13f..898a150f 100644 --- a/rust/nextpnr/src/lib.rs +++ b/rust/nextpnr/src/lib.rs @@ -438,9 +438,6 @@ pub struct Nets<'a> { _data: PhantomData<&'a Context>, } -unsafe impl Send for Nets<'_> {} -unsafe impl Sync for Nets<'_> {} - impl<'a> Nets<'a> { /// Create a new store for the nets of a context. ///