diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-02-02 00:08:39 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-02-02 02:59:04 +1100 |
| commit | e39cd20a4311f6e1377a01462cda5a89a4e67c15 (patch) | |
| tree | 821d2b61e6eaee5b25742fbe9175cf65baf1797f /src/libsyntax/print | |
| parent | aadcf29766553a6b6ed8a3c2f50193ebd674b7a7 (diff) | |
| download | rust-e39cd20a4311f6e1377a01462cda5a89a4e67c15.tar.gz rust-e39cd20a4311f6e1377a01462cda5a89a4e67c15.zip | |
syntax: remove the handling of @str and @[] from the parser completely.
Diffstat (limited to 'src/libsyntax/print')
| -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 bdef5e093f2..cb37bdd72c9 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -1074,7 +1074,6 @@ pub fn print_vstore(s: &mut State, t: ast::Vstore) { pub fn print_expr_vstore(s: &mut State, t: ast::ExprVstore) { match t { ast::ExprVstoreUniq => word(&mut s.s, "~"), - ast::ExprVstoreBox => word(&mut s.s, "@"), ast::ExprVstoreSlice => word(&mut s.s, "&"), ast::ExprVstoreMutSlice => { word(&mut s.s, "&"); |
