Skip to content

Commit

Permalink
Auto merge of rust-lang#16546 - odysa:minor/remove-eprintln, r=lnicola
Browse files Browse the repository at this point in the history
minor: remove eprintln! macro

`stdx::eprintln!` was remove in rust-lang#16465
  • Loading branch information
bors committed Feb 13, 2024
2 parents 3770f73 + ca64359 commit a980000
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
5 changes: 0 additions & 5 deletions crates/ide-assists/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@

#![warn(rust_2018_idioms, unused_lifetimes)]

#[allow(unused)]
macro_rules! eprintln {
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
}

mod assist_config;
mod assist_context;
#[cfg(test)]
Expand Down
5 changes: 0 additions & 5 deletions crates/ide/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@
#![cfg_attr(feature = "in-rust-tree", feature(rustc_private))]
#![recursion_limit = "128"]

#[allow(unused)]
macro_rules! eprintln {
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
}

#[cfg(test)]
mod fixture;

Expand Down
5 changes: 0 additions & 5 deletions crates/syntax/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ extern crate ra_ap_rustc_lexer as rustc_lexer;
#[cfg(feature = "in-rust-tree")]
extern crate rustc_lexer;

#[allow(unused)]
macro_rules! eprintln {
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
}

mod parsing;
mod ptr;
mod syntax_error;
Expand Down

0 comments on commit a980000

Please sign in to comment.