Skip to content

Commit 440a6bb

Browse files
committed
exercises/concept/*: rm unnecessary allow(unused)
1 parent 2e377c5 commit 440a6bb

File tree

3 files changed

+0
-12
lines changed
  • exercises/concept

3 files changed

+0
-12
lines changed

exercises/concept/assembly-line/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// This stub file contains items that aren't used yet; feel free to remove this module attribute
2-
// to enable stricter warnings.
3-
#![allow(unused)]
4-
51
pub fn production_rate_per_hour(speed: u8) -> f64 {
62
unimplemented!("calculate hourly production rate at speed: {}", speed)
73
}

exercises/concept/lucians-luscious-lasagna/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// This stub file contains items that aren't used yet; feel free to remove this module attribute
2-
// to enable stricter warnings.
3-
#![allow(unused)]
4-
51
pub fn expected_minutes_in_oven() -> i32 {
62
unimplemented!("return expected minutes in the oven")
73
}

exercises/concept/role-playing-game/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// This stub file contains items that aren't used yet; feel free to remove this module attribute
2-
// to enable stricter warnings.
3-
#![allow(unused)]
4-
51
pub struct Player {
62
pub health: u32,
73
pub mana: Option<u32>,

0 commit comments

Comments
 (0)