Skip to content

Commit

Permalink
Auto merge of #4802 - mikerite:fix-breakage-20191111, r=phansch
Browse files Browse the repository at this point in the history
Fix breakage due to rust-lang/rust#65324

changelog: none
  • Loading branch information
bors committed Nov 11, 2019
2 parents 6f9c43d + c1fd750 commit 3abdd2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions clippy_lints/src/lib.rs
Expand Up @@ -31,6 +31,8 @@ extern crate rustc_index;
#[allow(unused_extern_crates)]
extern crate rustc_mir;
#[allow(unused_extern_crates)]
extern crate rustc_parse;
#[allow(unused_extern_crates)]
extern crate rustc_target;
#[allow(unused_extern_crates)]
extern crate rustc_typeck;
Expand Down
2 changes: 1 addition & 1 deletion clippy_lints/src/write.rs
Expand Up @@ -2,9 +2,9 @@ use crate::utils::{snippet_with_applicability, span_lint, span_lint_and_sugg, sp
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
use rustc::{declare_lint_pass, declare_tool_lint};
use rustc_errors::Applicability;
use rustc_parse::parser;
use std::borrow::Cow;
use syntax::ast::*;
use syntax::parse::parser;
use syntax::token;
use syntax::tokenstream::TokenStream;
use syntax_pos::{BytePos, Span};
Expand Down

0 comments on commit 3abdd2f

Please sign in to comment.