fix(trace_main! macro): don't re-export (#10384)

This commit is contained in:
Niklas Adolfsson 2019-02-20 10:52:28 +01:00 committed by 5chdn
parent b803f57db6
commit b58a3ed0ad
1 changed files with 0 additions and 1 deletions

View File

@ -362,7 +362,6 @@ fn println_trace_main(s: String) {
}
}
#[macro_export]
macro_rules! trace_main {
($arg:expr) => (println_trace_main($arg.into()));
($($arg:tt)*) => (println_trace_main(format!("{}", format_args!($($arg)*))));