Merge pull request #1637 from mo8it/fix-warnings

Run clippy --fix
This commit is contained in:
liv
2023-08-28 13:38:21 +02:00
committed by GitHub
5 changed files with 35 additions and 35 deletions

View File

@@ -134,9 +134,9 @@ fn compile_and_test(
// 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();