summary refs log tree commit diff
path: root/src/libsyntax/print/pprust.rs
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-10-05 14:27:56 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-10-05 15:39:12 -0700
commitca49fd402af8e7bf613c43e996274b5a017958d2 (patch)
tree967e847cfe10d615ebb0629da3972388ff045644 /src/libsyntax/print/pprust.rs
parente16dbb7888504ef5d0de0c14493fc8ecc492ee30 (diff)
downloadrust-ca49fd402af8e7bf613c43e996274b5a017958d2.tar.gz
rust-ca49fd402af8e7bf613c43e996274b5a017958d2.zip
wip
Diffstat (limited to 'src/libsyntax/print/pprust.rs')
-rw-r--r--src/libsyntax/print/pprust.rs1
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) => ~"++",