diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-22 14:09:17 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-23 18:02:17 +1000 |
| commit | c7da1a5bb8f0f4e167960b5898772edf2554ce3c (patch) | |
| tree | 78b6d1a2181ddbb8ef950f9820d6e699a932a8c4 /compiler/rustc_lint/src/context.rs | |
| parent | c4bdd298fe94784f322e61a65bac6ee8944a6720 (diff) | |
| download | rust-c7da1a5bb8f0f4e167960b5898772edf2554ce3c.tar.gz rust-c7da1a5bb8f0f4e167960b5898772edf2554ce3c.zip | |
Remove `#[macro_use] extern crate tracing` from `rustc_lint`.
Diffstat (limited to 'compiler/rustc_lint/src/context.rs')
| -rw-r--r-- | compiler/rustc_lint/src/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint/src/context.rs b/compiler/rustc_lint/src/context.rs index deeb3ae090c..c23a67f6131 100644 --- a/compiler/rustc_lint/src/context.rs +++ b/compiler/rustc_lint/src/context.rs @@ -39,10 +39,10 @@ use rustc_span::edit_distance::find_best_match_for_names; use rustc_span::symbol::{sym, Ident, Symbol}; use rustc_span::Span; use rustc_target::abi; - use std::cell::Cell; use std::iter; use std::slice; +use tracing::debug; mod diagnostics; |
