Fix all clippy warnings.

This commit is contained in:
2018-12-17 12:26:31 +01:00
parent 851868bed4
commit f23624c456
15 changed files with 52 additions and 38 deletions

View File

@@ -4,11 +4,12 @@ use std::io::prelude::*;
use common;
#[derive(Default)]
pub struct Day01 {}
impl Day01 {
pub fn new() -> Day01 {
Day01 {}
Default::default()
}
}