summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--melib/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/melib/src/lib.rs b/melib/src/lib.rs
index 97b142dc..ce5424b1 100644
--- a/melib/src/lib.rs
+++ b/melib/src/lib.rs
@@ -43,6 +43,7 @@ pub mod dbg {
};
($val:expr) => {
if cfg!(debug_assertions) {
+ let stringify = stringify!($val);
// Use of `match` here is intentional because it affects the lifetimes
// of temporaries - https://stackoverflow.com/a/48732525/1063961
match $val {
@@ -57,7 +58,7 @@ pub mod dbg {
line!(),
column!()
);
- eprintln!("{} = {:?}", stringify!(tmp), tmp);
+ eprintln!("{} = {:?}", stringify, tmp);
tmp
}
}