diff options
author | cos <cos> | 2021-12-10 07:37:46 +0100 |
---|---|---|
committer | cos <cos> | 2021-12-10 07:37:46 +0100 |
commit | 848c99078faa9af828cdf44596d4a34ea1242f79 (patch) | |
tree | 331ee4cc8fc5629e4bab88d6893ff16df7c24533 /bin | |
parent | 8aa43a7021ddf058e61769b780e4f0024977d731 (diff) | |
download | adventofcode-848c99078faa9af828cdf44596d4a34ea1242f79.zip |
Avoid lint error on initial opening of boilerplate code
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/init_rust.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/init_rust.sh b/bin/init_rust.sh index 681ecf8..fc4e25d 100755 --- a/bin/init_rust.sh +++ b/bin/init_rust.sh @@ -57,11 +57,11 @@ fn read_input<T: AsRef<Path>>(filename: T) -> Result<Vec<usize>> { ).collect() } -fn part1<'a, I: IntoIterator<Item = &'a usize>>(input: I) -> Result<usize> { +fn part1<'a, I: IntoIterator<Item = &'a usize>>(_input: I) -> Result<usize> { Ok(0) } -fn part2<'a, I: IntoIterator<Item = &'a usize>>(input: I) -> Result<usize> { +fn part2<'a, I: IntoIterator<Item = &'a usize>>(_input: I) -> Result<usize> { Ok(0) } |