Skip to content

Commit a980000

Browse files
committed
Auto merge of rust-lang#16546 - odysa:minor/remove-eprintln, r=lnicola
minor: remove eprintln! macro `stdx::eprintln!` was remove in rust-lang#16465
2 parents 3770f73 + ca64359 commit a980000

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

crates/ide-assists/src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,6 @@
6060
6161
#![warn(rust_2018_idioms, unused_lifetimes)]
6262

63-
#[allow(unused)]
64-
macro_rules! eprintln {
65-
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
66-
}
67-
6863
mod assist_config;
6964
mod assist_context;
7065
#[cfg(test)]

crates/ide/src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212
#![cfg_attr(feature = "in-rust-tree", feature(rustc_private))]
1313
#![recursion_limit = "128"]
1414

15-
#[allow(unused)]
16-
macro_rules! eprintln {
17-
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
18-
}
19-
2015
#[cfg(test)]
2116
mod fixture;
2217

crates/syntax/src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ extern crate ra_ap_rustc_lexer as rustc_lexer;
2727
#[cfg(feature = "in-rust-tree")]
2828
extern crate rustc_lexer;
2929

30-
#[allow(unused)]
31-
macro_rules! eprintln {
32-
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
33-
}
34-
3530
mod parsing;
3631
mod ptr;
3732
mod syntax_error;

0 commit comments

Comments
 (0)