From 060f420cf7412be7ec89806816185e877883a647 Mon Sep 17 00:00:00 2001 From: a14m Date: Sun, 4 Apr 2021 23:59:51 +0200 Subject: Fix linting issue with unused var --- CLI/rust/src/game_of_life/generators/seed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CLI/rust/src') 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!() } -- cgit v1.2.3