summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcos <cos>2021-12-10 07:37:46 +0100
committercos <cos>2021-12-10 07:37:46 +0100
commit848c99078faa9af828cdf44596d4a34ea1242f79 (patch)
tree331ee4cc8fc5629e4bab88d6893ff16df7c24533
parent8aa43a7021ddf058e61769b780e4f0024977d731 (diff)
downloadadventofcode-848c99078faa9af828cdf44596d4a34ea1242f79.zip
Avoid lint error on initial opening of boilerplate code
-rwxr-xr-xbin/init_rust.sh4
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)
}