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 ece0986 commit 806732aCopy full SHA for 806732a
src/libcore/rt/mod.rs
@@ -8,8 +8,9 @@
8
// option. This file may not be copied, modified, or distributed
9
// except according to those terms.
10
11
+
12
// Some basic logging
-macro_rules! rtdebug (
13
+macro_rules! rtdebug_ (
14
($( $arg:expr),+) => ( {
15
dumb_println(fmt!( $($arg),+ ));
16
@@ -30,7 +31,7 @@ macro_rules! rtdebug (
30
31
)
32
33
// An alternate version with no output, for turning off logging
-macro_rules! rtdebug_ (
34
+macro_rules! rtdebug (
35
($( $arg:expr),+) => ( $(let _ = $arg)*; )
36
37
0 commit comments