From 2ef8999dafe1c93883f3e15ee5e74971b1a82085 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 13 Oct 2020 22:16:19 +0300 Subject: [PATCH] Remove not necessary inline attributes Now with the bug fixed we can optimise this code for size. --- nucleus/src/write_to.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/nucleus/src/write_to.rs b/nucleus/src/write_to.rs index e549e4b..8f91698 100644 --- a/nucleus/src/write_to.rs +++ b/nucleus/src/write_to.rs @@ -60,7 +60,6 @@ impl<'a> fmt::Write for WriteTo<'a> { } #[allow(unused)] -#[inline] pub fn show<'a>(buffer: &'a mut [u8], args: fmt::Arguments) -> Result<&'a str, fmt::Error> { let mut w = WriteTo::new(buffer); fmt::write(&mut w, args)?; @@ -69,8 +68,6 @@ pub fn show<'a>(buffer: &'a mut [u8], args: fmt::Arguments) -> Result<&'a str, f // Return a zero-terminated str #[allow(unused)] -#[inline] -// Crazy bug - result of this call disappears if it's not inlined (https://github.com/rust-lang/rust/issues/68812) pub fn c_show<'a>(buffer: &'a mut [u8], args: fmt::Arguments) -> Result<&'a str, fmt::Error> { let mut w = WriteTo::new(buffer); fmt::write(&mut w, args)?;