We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789fd34 commit 4a44471Copy full SHA for 4a44471
src/lib.rs
@@ -66,11 +66,11 @@ static STD_INPUT: CsRefCell<StdInput> = CsRefCell::new(StdInput::new());
66
/// Prints to the screen
67
#[macro_export]
68
macro_rules! osprint {
69
- ($($arg:tt)*) => {
+ ($($arg:tt)*) => { {
70
#[allow(unused)]
71
use core::fmt::Write as _;
72
let _ = write!(&$crate::CONSOLE, $($arg)*);
73
- }
+ } }
74
}
75
76
/// Prints to the screen and puts a new-line on the end
0 commit comments