Run clippy --fix

This commit is contained in:
mo8it
2023-08-26 23:07:20 +02:00
parent c663f06669
commit 571bab20c1
5 changed files with 35 additions and 35 deletions

View File

@@ -123,9 +123,9 @@ fn compile_and_test(exercise: &Exercise, run_mode: RunMode, verbose: bool, succe
// Compile the given Exercise and return an object with information
// about the state of the compilation
fn compile<'a, 'b>(
fn compile<'a>(
exercise: &'a Exercise,
progress_bar: &'b ProgressBar,
progress_bar: &ProgressBar,
) -> Result<CompiledExercise<'a>, ()> {
let compilation_result = exercise.compile();