// Silence some warnings so they don't distract from the exercise. clippy::vec_init_then_push is distracting here

This commit is contained in:
Korny666
2022-03-09 11:53:54 +01:00
committed by Nathan Stocks
parent a47afbbb6e
commit 036e7b7b50

View File

@@ -1,6 +1,8 @@
// START IN lib.rs! // START IN lib.rs!
use aquarium::Dolphin; use aquarium::Dolphin;
// Silence some warnings so they don't distract from the exercise.
#[allow(clippy::vec_init_then_push)]
// (You already did #1 in lib.rs, right?) // (You already did #1 in lib.rs, right?)
// //