summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authora14m <[email protected]>2021-04-04 23:59:51 +0200
committera14m <[email protected]>2021-04-04 23:59:51 +0200
commit060f420cf7412be7ec89806816185e877883a647 (patch)
tree68513288d5af5bd549054fd7b8854df05e8311f1
parent59f7f01f388372fda1d42bd594372383efc2962d (diff)
Fix linting issue with unused var
-rw-r--r--CLI/rust/src/game_of_life/generators/seed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CLI/rust/src/game_of_life/generators/seed.rs b/CLI/rust/src/game_of_life/generators/seed.rs
index 9b28eaf..f6344ac 100644
--- a/CLI/rust/src/game_of_life/generators/seed.rs
+++ b/CLI/rust/src/game_of_life/generators/seed.rs
@@ -9,6 +9,6 @@ use mocktopus::macros::mockable;
/// The generation of the seed should be stable across different machines
/// using the same language package, version, width and height.
#[cfg_attr(test, mockable)]
-pub(crate) fn new(opts: Opts) -> Universe {
+pub(crate) fn new(_opts: Opts) -> Universe {
unimplemented!()
}