From cb932cccc2886efdc9dd5af24ba5df16e3ed8b62 Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Sat, 7 Feb 2026 13:58:57 +0900 Subject: [PATCH] shuf: drop inline --- src/uu/shuf/src/shuf.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/uu/shuf/src/shuf.rs b/src/uu/shuf/src/shuf.rs index f0caf445d9b..c7e5689ab40 100644 --- a/src/uu/shuf/src/shuf.rs +++ b/src/uu/shuf/src/shuf.rs @@ -378,7 +378,6 @@ impl Writable for &OsStr { } impl Writable for u64 { - #[inline] fn write_all_to(&self, output: &mut impl OsWrite) -> Result<(), io::Error> { // The itoa crate is surprisingly much more efficient than a formatted write. // It speeds up `shuf -r -n1000000 -i1-1024` by 1.8×. @@ -395,7 +394,6 @@ fn handle_write_error(e: io::Error) -> Box { e.map_err_context(move || ctx) } -#[inline(never)] fn shuf_exec( input: &mut impl Shufable, opts: &Options,