diff options
author | 2017-12-09 15:13:42 +0000 | |
---|---|---|
committer | 2017-12-09 15:13:42 +0000 | |
commit | 0f5784c2401d4b12004f34345e721598fa21219a (patch) | |
tree | 53fd6aaad6757a60762ec687207ea956cbfede36 /macros/src | |
parent | 40ebb93cc6ec8533d4532853c3fd01693af09d8e (diff) | |
parent | 62c5c1ae431790e36ffeb0eebba75dfabb5dbd76 (diff) | |
download | rtic-0f5784c2401d4b12004f34345e721598fa21219a.tar.gz rtic-0f5784c2401d4b12004f34345e721598fa21219a.tar.zst rtic-0f5784c2401d4b12004f34345e721598fa21219a.zip |
Auto merge of #57 - japaric:not-sync, r=japaric
make resource proxies not Sync
None
Diffstat (limited to '')
-rw-r--r-- | macros/src/trans.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/macros/src/trans.rs b/macros/src/trans.rs index 77eada41..9bf1e2a9 100644 --- a/macros/src/trans.rs +++ b/macros/src/trans.rs @@ -440,8 +440,6 @@ fn resources(app: &App, ownerships: &Ownerships, root: &mut Vec<Tokens>) { #[allow(non_camel_case_types)] pub struct #name { _0: PhantomData<*const ()> } - unsafe impl Sync for #name {} - #[allow(unsafe_code)] impl #name { pub unsafe fn new() -> Self { |