stop macro from returning #2
@ -7,13 +7,13 @@ pub type StdResult<T, E> = std::result::Result<T, E>;
|
|||||||
// so heres labelprint as a macro
|
// so heres labelprint as a macro
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! lprint {
|
macro_rules! lprint {
|
||||||
($expr:expr) => {
|
($expr:expr) => {{
|
||||||
let ___this_file = std::file!();
|
let ___this_file = std::file!();
|
||||||
let ___line = std::line!();
|
let ___line = std::line!();
|
||||||
// let ___column = column!();
|
// let ___column = column!();
|
||||||
println!("[{}:{}] {}", ___this_file, ___line, $expr);
|
println!("[{}:{}] {}", ___this_file, ___line, $expr);
|
||||||
};
|
}};
|
||||||
($expr:expr, $($arg:tt)*) => {
|
($expr:expr, $($arg:tt)*) => {{
|
||||||
lprint!(format!($expr, $($arg)*));
|
lprint!(format!($expr, $($arg)*));
|
||||||
};
|
}};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user