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/print/pprust.rs | |
| parent | 51a5a4ad0e2501b260a8059a72e4b0eebe78d6f9 (diff) | |
| download | rust-f23674394f2e77b7aa4686a5ae9f2f60d6faa428.tar.gz rust-f23674394f2e77b7aa4686a5ae9f2f60d6faa428.zip | |
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/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 9eccf688233..eaacf6cd424 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -1823,7 +1823,6 @@ fn print_purity(s: ps, p: ast::purity) { fn proto_to_str(p: ast::proto) -> ~str { return alt p { ast::proto_bare { ~"extern fn" } - ast::proto_any { ~"fn" } ast::proto_block { ~"fn&" } ast::proto_uniq { ~"fn~" } ast::proto_box { ~"fn@" } |
