Fix compile error with --features=parse_debug_trace

This commit is contained in:
Joshua Warner 2022-02-26 13:31:08 -08:00
parent 2d9250b1c1
commit 2682193b76

View File

@ -710,9 +710,8 @@ where
let cur_indent = INDENT.with(|i| *i.borrow());
println!(
"@{:>5}:{:<5}: {}{:<50}",
state.line,
state.column,
"{:>5?}: {}{:<50}",
state.pos(),
&indent_text[..cur_indent * 2],
self.message
);
@ -727,9 +726,8 @@ where
};
println!(
"@{:>5}:{:<5}: {}{:<50} {:<15} {:?}",
state.line,
state.column,
"{:<5?}: {}{:<50} {:<15} {:?}",
state.pos(),
&indent_text[..cur_indent * 2],
self.message,
format!("{:?}", progress),