1
Fork 0

[breaking-change] don't glob import/export syntax::abi enum variants

This commit is contained in:
Oliver Schneider 2016-02-05 13:13:36 +01:00
parent 47b0784ba8
commit 243a30c931
38 changed files with 189 additions and 189 deletions

View file

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use abi;
use abi::Abi;
use ast::{self, Ident, Generics, Expr, BlockCheckMode, UnOp};
use attr;
use codemap::{Span, respan, Spanned, DUMMY_SP, Pos};
@ -971,7 +971,7 @@ impl<'a> AstBuilder for ExtCtxt<'a> {
ast::ItemFn(self.fn_decl(inputs, output),
ast::Unsafety::Normal,
ast::Constness::NotConst,
abi::Rust,
Abi::Rust,
generics,
body))
}