From ab8515862ee01f18710e0f7a2e58cc424b934a37 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Fri, 6 Aug 2021 23:49:53 +0200 Subject: [PATCH] Make clippy happy --- src/bin/decoder/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/decoder/mod.rs b/src/bin/decoder/mod.rs index 7c7ca0e1b7..9855a67cf0 100644 --- a/src/bin/decoder/mod.rs +++ b/src/bin/decoder/mod.rs @@ -25,8 +25,8 @@ pub trait Decoder: Send { } #[derive(Debug)] +#[allow(clippy::upper_case_acronyms)] pub enum DecodeError { - #[allow(clippy::upper_case_acronyms)] EOF, BadInput, UnknownColorspace,