diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-05 22:07:53 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-05 22:45:50 -0700 |
| commit | f96a2a2ca16a44f869336f7e28fc261551c1184c (patch) | |
| tree | 2ad5328c09352f539ee5e3be3fdc41ea1b89dc85 /src/libsyntax/print/pprust.rs | |
| parent | 05999290e23ad5f57bdfbfd56bde694a627c342e (diff) | |
| download | rust-f96a2a2ca16a44f869336f7e28fc261551c1184c.tar.gz rust-f96a2a2ca16a44f869336f7e28fc261551c1184c.zip | |
Remove by-mutable-ref mode from the compiler
and test cases. Closes #3513
Diffstat (limited to 'src/libsyntax/print/pprust.rs')
| -rw-r--r-- | src/libsyntax/print/pprust.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index d08b20eed84..bff356e5cb7 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -1688,7 +1688,6 @@ fn print_fn_block_args(s: ps, decl: ast::fn_decl, fn mode_to_str(m: ast::mode) -> ~str { match m { - ast::expl(ast::by_mutbl_ref) => ~"&", ast::expl(ast::by_move) => ~"-", ast::expl(ast::by_ref) => ~"&&", ast::expl(ast::by_val) => ~"++", |
