diff options
author | 2017-12-09 14:26:38 +0000 | |
---|---|---|
committer | 2017-12-09 14:26:38 +0000 | |
commit | 40ebb93cc6ec8533d4532853c3fd01693af09d8e (patch) | |
tree | 2a452f6e7d7d02bc9d17494554f04afcab8efd63 /examples/zero-tasks.rs | |
parent | 0a0e0e2b382d826ac7b423c91f39d2abf91a010f (diff) | |
parent | d6c240f9743067c81e68adcf35c60304573db8b9 (diff) | |
download | rtic-40ebb93cc6ec8533d4532853c3fd01693af09d8e.tar.gz rtic-40ebb93cc6ec8533d4532853c3fd01693af09d8e.tar.zst rtic-40ebb93cc6ec8533d4532853c3fd01693af09d8e.zip |
Auto merge of #56 - japaric:not-send, r=japaric
make resource proxies !Send
None
Diffstat (limited to 'examples/zero-tasks.rs')
-rw-r--r-- | examples/zero-tasks.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/zero-tasks.rs b/examples/zero-tasks.rs index 58e6afc7..b1ebab6f 100644 --- a/examples/zero-tasks.rs +++ b/examples/zero-tasks.rs @@ -1,5 +1,6 @@ //! Minimal example with zero tasks #![deny(unsafe_code)] +#![deny(warnings)] // IMPORTANT always include this feature gate #![feature(proc_macro)] #![no_std] |