We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b0274c commit cd04717Copy full SHA for cd04717
compiler/rustc_const_eval/src/interpret/util.rs
@@ -58,9 +58,9 @@ pub enum MaybeEnteredSpan {
58
macro_rules! enter_trace_span {
59
($machine:ident, $($tt:tt)*) => {
60
if $machine::TRACING_ENABLED {
61
- $crate::interpret::tracing_utils::MaybeEnteredSpan::Some(tracing::info_span!($($tt)*).entered())
+ $crate::interpret::util::MaybeEnteredSpan::Some(tracing::info_span!($($tt)*).entered())
62
} else {
63
- $crate::interpret::tracing_utils::MaybeEnteredSpan::None
+ $crate::interpret::util::MaybeEnteredSpan::None
64
}
65
66
0 commit comments