From 59630c00c6823713c50c1092928af3a318f29ec9 Mon Sep 17 00:00:00 2001 From: Danny McClanahan <1305167+cosmicexplorer@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:37:45 -0400 Subject: [PATCH] fix dead code analysis warning --- src/read/stream.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/read/stream.rs b/src/read/stream.rs index 7bc91c9c..7fb76e70 100644 --- a/src/read/stream.rs +++ b/src/read/stream.rs @@ -220,6 +220,7 @@ mod test { } } + #[allow(dead_code)] #[derive(Default, Debug, Eq, PartialEq)] struct CounterVisitor(u64, u64); impl ZipStreamVisitor for CounterVisitor {