diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-08-03 19:49:12 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-08-03 19:49:12 -0700 |
| commit | f23674394f2e77b7aa4686a5ae9f2f60d6faa428 (patch) | |
| tree | 4c4d8d805f80254a9aa2f2788d288e053d88fe62 /src/libsyntax/ext | |
| parent | 51a5a4ad0e2501b260a8059a72e4b0eebe78d6f9 (diff) | |
rustc: Merge fn& and fn in favor of fn&.
This is a step on the way to moving the function "proto" sigil out front.
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/auto_serialize.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libsyntax/ext/auto_serialize.rs b/src/libsyntax/ext/auto_serialize.rs index 90319feb4d2..cc37b5cc8d0 100644 --- a/src/libsyntax/ext/auto_serialize.rs +++ b/src/libsyntax/ext/auto_serialize.rs @@ -186,10 +186,10 @@ impl helpers of ext_ctxt_helpers for ext_ctxt { }; @{id: self.next_id(), - node: ast::ty_fn(ast::proto_any, {inputs: args, - output: output, - purity: ast::impure_fn, - cf: ast::return_val}), + node: ast::ty_fn(ast::proto_block, {inputs: args, + output: output, + purity: ast::impure_fn, + cf: ast::return_val}), span: span} } |
