Skip to content

Commit

Permalink
Rollup merge of #69921 - matthiaskrgr:rustdoc_import, r=Centril
Browse files Browse the repository at this point in the history
rustdoc: remove unused import

```
    Checking rustdoc v0.0.0 (/home/matthias/vcs/github/rust/src/librustdoc)
warning: unused import: `rustc_span::symbol::sym`
  --> src/librustdoc/clean/inline.rs:15:5
   |
15 | use rustc_span::symbol::sym;
   |     ^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(unused_imports)]` on by default
```
  • Loading branch information
Centril authored Mar 11, 2020
2 parents 9e299ee + 3244c84 commit 0f2f612
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/librustdoc/clean/inline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ use rustc_hir::Mutability;
use rustc_metadata::creader::LoadedMacro;
use rustc_mir::const_eval::is_min_const_fn;
use rustc_span::hygiene::MacroKind;
use rustc_span::symbol::sym;
use rustc_span::Span;

use crate::clean::{self, GetDefId, ToSource, TypeKind};
Expand Down

0 comments on commit 0f2f612

Please sign in to comment.