From afd7dc56741989cf843ffbd26cbd9b7a311d60b7 Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sat, 7 Jun 2025 21:17:30 +0800 Subject: [PATCH] Fix warning --- src/format/fixed.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/format/fixed.rs b/src/format/fixed.rs index 3345a90..e4eb9de 100644 --- a/src/format/fixed.rs +++ b/src/format/fixed.rs @@ -6,6 +6,7 @@ const SPACE_STR_LIST: [&str; 2] = [" ", " "]; pub struct FixedFormatter { length: usize, keep_original: bool, + #[allow(unused)] typ: Option, }