diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-06 13:35:41 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-08 12:52:31 +1000 |
| commit | 55b6ff8e41739404b0a6fb23e7f8fbff615a900d (patch) | |
| tree | 2b32262464e0e5609ef6cd8521cb81bf4b7f8846 /compiler/rustc_data_structures/src/obligation_forest | |
| parent | 351c0fa2a33baa3406a0c00034ff5e2cdac6fd7f (diff) | |
| download | rust-55b6ff8e41739404b0a6fb23e7f8fbff615a900d.tar.gz rust-55b6ff8e41739404b0a6fb23e7f8fbff615a900d.zip | |
Remove `extern crate tracing`.
`use` is a nicer way of doing things.
Diffstat (limited to 'compiler/rustc_data_structures/src/obligation_forest')
| -rw-r--r-- | compiler/rustc_data_structures/src/obligation_forest/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/obligation_forest/mod.rs b/compiler/rustc_data_structures/src/obligation_forest/mod.rs index a47908648ba..d477b86da74 100644 --- a/compiler/rustc_data_structures/src/obligation_forest/mod.rs +++ b/compiler/rustc_data_structures/src/obligation_forest/mod.rs @@ -70,12 +70,12 @@ //! aren't needed anymore. use crate::fx::{FxHashMap, FxHashSet}; - use std::cell::Cell; use std::collections::hash_map::Entry; use std::fmt::Debug; use std::hash; use std::marker::PhantomData; +use tracing::debug; mod graphviz; |
