diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-12-27 13:48:00 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2014-01-03 14:01:57 -0800 |
| commit | 4d66af2698fd2ff2d19d68cda4eb804b5d319e5b (patch) | |
| tree | 73a86f33d06e630b2c45d81532c1f9bda62627d5 /src/libsyntax/print | |
| parent | 7e1b535eb1aa7614e40538ca5892a71199f804b9 (diff) | |
| download | rust-4d66af2698fd2ff2d19d68cda4eb804b5d319e5b.tar.gz rust-4d66af2698fd2ff2d19d68cda4eb804b5d319e5b.zip | |
librustc: De-`@mut` the span handler
Diffstat (limited to 'src/libsyntax/print')
| -rw-r--r-- | src/libsyntax/print/pprust.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index 79ef9c2cbbe..c13bae777c6 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -118,7 +118,7 @@ pub static default_columns: uint = 78u; // copy forward. pub fn print_crate(cm: @CodeMap, intr: @ident_interner, - span_diagnostic: @mut diagnostic::SpanHandler, + span_diagnostic: @diagnostic::SpanHandler, crate: &ast::Crate, filename: @str, input: @mut io::Reader, |
