From 9a53bb2fef62c15f315688f1c9aa358a0d462284 Mon Sep 17 00:00:00 2001 From: Alex Arslan Date: Sat, 21 Sep 2024 15:58:39 -0700 Subject: [PATCH] =?UTF-8?q?#[allow(dead=5Fcode)]=20RIP=20code=20?= =?UTF-8?q?=F0=9F=AA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/operations.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/operations.rs b/src/operations.rs index bfcf23f0..68593e7d 100644 --- a/src/operations.rs +++ b/src/operations.rs @@ -49,6 +49,8 @@ where Ok(()) } +// NOTE: This function is unused on platforms other than FreeBSD, so we need to allow dead code +#[allow(dead_code)] fn unpack_with_cli(mut src: R, dst: P, levels_to_skip: usize) -> Result<()> where R: Read,