From 54acc36f96922c5f7eeb969313c9a556101f5b7b Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Sun, 18 Aug 2019 08:36:31 -0400 Subject: Fix `cargo test` by removing example. Unfortunate, but necessary for automated testing. Documentation will need to be added to show usage, and a demo crate. --- examples/simple/macros.rs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 examples/simple/macros.rs (limited to 'examples/simple/macros.rs') diff --git a/examples/simple/macros.rs b/examples/simple/macros.rs deleted file mode 100644 index 46d2d07..0000000 --- a/examples/simple/macros.rs +++ /dev/null @@ -1,15 +0,0 @@ -#[macro_export] -macro_rules! logln_now { - ($($arg:tt)*) => { - unsafe {crate::logger::write_fmt_now(format_args!($($arg)*), true);} - }; - (_) => {}; -} - -#[macro_export] -macro_rules! log_now { - ($($arg:tt)*) => { - unsafe {crate::logger::write_fmt_now(format_args!($($arg)*), false);} - }; - (_) => {}; -} -- cgit v1.2.3