diff options
| author | bors <bors@rust-lang.org> | 2013-03-29 18:39:41 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-03-29 18:39:41 -0700 |
| commit | fbd8eae26de23cf00081229176fd7efd80943905 (patch) | |
| tree | d95089f050cd67db2a5171a799763faa09f5b0a8 /src/libsyntax/ext | |
| parent | f864934f548be9f03d2c0512de8d7e908469e2ae (diff) | |
| parent | 6965fe4bceea836586bd8e7aa01a92a35b467f78 (diff) | |
| download | rust-fbd8eae26de23cf00081229176fd7efd80943905.tar.gz rust-fbd8eae26de23cf00081229176fd7efd80943905.zip | |
auto merge of #5631 : brson/rust/abiset, r=brson,brson
Continuing #5421
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/pipes/ast_builder.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libsyntax/ext/pipes/ast_builder.rs b/src/libsyntax/ext/pipes/ast_builder.rs index 075474a2a0d..72e6c22dbc8 100644 --- a/src/libsyntax/ext/pipes/ast_builder.rs +++ b/src/libsyntax/ext/pipes/ast_builder.rs @@ -15,7 +15,8 @@ use core::prelude::*; -use ast::ident; +use abi::AbiSet; +use ast::{ident, node_id}; use ast; use ast_util; use codemap::{span, respan, dummy_sp, spanned}; @@ -272,6 +273,7 @@ impl ext_ctxt_ast_builder for @ext_ctxt { dummy_sp(), ast::item_fn(self.fn_decl(inputs, output), ast::impure_fn, + AbiSet::Rust(), generics, body)) } |
