Skip to content

Commit df3b9cc

Browse files
committed
Format the code
1 parent 1036df5 commit df3b9cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clippy_lints/src/attrs.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//! checks for attributes
22
33
use crate::reexport::*;
4+
use crate::utils::{
5+
in_macro, last_line_of_span, match_def_path, opt_def_id, paths, snippet_opt, span_lint, span_lint_and_then,
6+
without_block_comments,
7+
};
48
use rustc::hir::*;
59
use rustc::lint::*;
610
use rustc::ty::{self, TyCtxt};
711
use semver::Version;
812
use syntax::ast::{AttrStyle, Attribute, Lit, LitKind, MetaItemKind, NestedMetaItem, NestedMetaItemKind};
913
use syntax::codemap::Span;
10-
use crate::utils::{
11-
in_macro, last_line_of_span, match_def_path, opt_def_id, paths, snippet_opt, span_lint, span_lint_and_then,
12-
without_block_comments,
13-
};
1414

1515
/// **What it does:** Checks for items annotated with `#[inline(always)]`,
1616
/// unless the annotated function is empty or simply panics.

0 commit comments

Comments
 (0)