Skip to content

Commit 7aa32f7

Browse files
committed
Remove the now-duplicate logging macros
1 parent daf5f5a commit 7aa32f7

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/libsyntax/ext/expand.rs

-8
Original file line numberDiff line numberDiff line change
@@ -838,14 +838,6 @@ pub fn std_macros() -> @str {
838838
)
839839
)
840840

841-
// NOTE (acrichto): remove these after the next snapshot
842-
macro_rules! log2( ($($arg:tt)*) => (log!($($arg)*)) )
843-
macro_rules! error( ($($arg:tt)*) => (error!($($arg)*)) )
844-
macro_rules! warn ( ($($arg:tt)*) => (warn!($($arg)*)) )
845-
macro_rules! info ( ($($arg:tt)*) => (info!($($arg)*)) )
846-
macro_rules! debug( ($($arg:tt)*) => (debug!($($arg)*)) )
847-
macro_rules! fail( ($($arg:tt)*) => (fail!($($arg)*)) )
848-
849841
macro_rules! assert(
850842
($cond:expr) => {
851843
if !$cond {

0 commit comments

Comments
 (0)