diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-09-26 10:43:11 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-09-26 10:43:11 -0700 |
| commit | 101bc62ad91927e7fd9cf58ee431adf06574e2a7 (patch) | |
| tree | 605622be264267bedfac762977020a8fb61fd2a1 /src/libsyntax | |
| parent | 540934980a9d7c62dd30675946ba1dbb96aee163 (diff) | |
| download | rust-101bc62ad91927e7fd9cf58ee431adf06574e2a7.tar.gz rust-101bc62ad91927e7fd9cf58ee431adf06574e2a7.zip | |
Revert "fix modes on dtors"
This reverts commit d38b97a170eaea47933c30937cee5f525573116d. (Accidentally checked this in, oops)
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast_util.rs b/src/libsyntax/ast_util.rs index 828f72eb99d..b0df0ea1c8d 100644 --- a/src/libsyntax/ast_util.rs +++ b/src/libsyntax/ast_util.rs @@ -399,7 +399,7 @@ fn operator_prec(op: ast::binop) -> uint { fn dtor_dec() -> fn_decl { let nil_t = @{id: 0, node: ty_nil, span: dummy_sp()}; // dtor has one argument, of type () - {inputs: ~[{mode: ast::infer(0), // tjc: node id??? + {inputs: ~[{mode: ast::expl(ast::by_ref), ty: nil_t, ident: parse::token::special_idents::underscore, id: 0}], output: nil_t, cf: return_val} |
