Skip to content

Commit 5e940f5

Browse files
author
The Miri Cronjob Bot
committed
fmt
1 parent 1f721c6 commit 5e940f5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tools/miri/src/machine.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1828,7 +1828,9 @@ impl<'tcx> Machine<'tcx> for MiriMachine<'tcx> {
18281828

18291829
fn enter_trace_span(span: impl FnOnce() -> tracing::Span) -> impl EnteredTraceSpan {
18301830
#[cfg(feature = "tracing")]
1831-
{ span().entered() }
1831+
{
1832+
span().entered()
1833+
}
18321834
#[cfg(not(feature = "tracing"))]
18331835
{
18341836
let _ = span; // so we avoid the "unused variable" warning

0 commit comments

Comments
 (0)