diff options
author | 2017-09-22 13:46:30 +0200 | |
---|---|---|
committer | 2017-09-22 13:46:30 +0200 | |
commit | b1777ebd68cd1b9b606e532ced8c242563a8c021 (patch) | |
tree | 2399d26e466f43d66b930f56c6946ef48f86ceda | |
parent | 21d1f6b9ad5e9407ddd18829f58267ef7b80e03c (diff) | |
download | rtic-b1777ebd68cd1b9b606e532ced8c242563a8c021.tar.gz rtic-b1777ebd68cd1b9b606e532ced8c242563a8c021.tar.zst rtic-b1777ebd68cd1b9b606e532ced8c242563a8c021.zip |
Fix warning in wrong-threshold cfail test
-rw-r--r-- | tests/cfail/wrong-threshold.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/cfail/wrong-threshold.rs b/tests/cfail/wrong-threshold.rs index c9459af7..b46f82de 100644 --- a/tests/cfail/wrong-threshold.rs +++ b/tests/cfail/wrong-threshold.rs @@ -1,5 +1,4 @@ #![deny(warnings)] -#![feature(const_fn)] #![feature(proc_macro)] #![no_std] @@ -46,4 +45,4 @@ fn exti0(mut ot: &mut Threshold, r: EXTI0::Resources) { }); } -fn exti1(_t: &mut Threshold, r: EXTI1::Resources) {} +fn exti1(_t: &mut Threshold, _r: EXTI1::Resources) {} |