Remove stdx::eprintln overwrite

This commit is contained in:
Lukas Wirth 2024-01-31 22:06:05 +01:00
parent 9d837a622d
commit 23f4b7f45f
2 changed files with 0 additions and 15 deletions

View file

@ -1,15 +1,5 @@
//! Convenience macros.
#[macro_export]
macro_rules! eprintln {
($($tt:tt)*) => {{
if $crate::is_ci() {
panic!("Forgot to remove debug-print?")
}
std::eprintln!($($tt)*)
}}
}
/// Appends formatted string to a `String`.
#[macro_export]
macro_rules! format_to {