From f0fa94c366a1d0383df99aa835add175658d6bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Mon, 20 May 2024 23:54:30 +0200 Subject: [PATCH] chore: Allow `dead_code` beta clippy lint for `CustomPictureClock` fields --- h263/src/types.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/h263/src/types.rs b/h263/src/types.rs index 073293a..200d87e 100644 --- a/h263/src/types.rs +++ b/h263/src/types.rs @@ -369,10 +369,12 @@ pub struct CustomPictureClock { /// Whether or not the divisor is multiplied by 1000 or 1001. /// /// `true` indicates 1001, whilst `false` indicates 1000. + #[allow(dead_code)] pub times_1001: bool, /// The divisor, itself stored divided by a constant factor (see /// `times_1001`.) + #[allow(dead_code)] pub divisor: u8, }