Merge pull request #372 from alexreg/nightly-fix

Fixed build for latest nightly (again)
This commit is contained in:
Oliver Schneider 2018-05-07 10:48:27 +02:00 committed by GitHub
commit 696dda84ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -2,7 +2,6 @@ use rustc::ty::{self, Ty};
use rustc::ty::layout::{self, Align, LayoutOf};
use rustc::hir::def_id::{DefId, CRATE_DEF_INDEX};
use rustc::mir;
use rustc_target::spec::abi::Abi;
use rustc_data_structures::indexed_vec::Idx;
use syntax::attr;
use syntax::codemap::Span;

View file

@ -11,9 +11,9 @@ extern crate log;
// From rustc.
#[macro_use]
extern crate rustc;
extern crate rustc_data_structures;
extern crate rustc_mir;
extern crate rustc_target;
extern crate rustc_data_structures;
extern crate syntax;
extern crate regex;
#[macro_use]