diff options
| author | srinivasreddy <thatiparthysreenivas@gmail.com> | 2016-03-11 00:05:53 +0530 |
|---|---|---|
| committer | srinivasreddy <thatiparthysreenivas@gmail.com> | 2016-03-12 08:23:38 +0530 |
| commit | b308ed06846460150eb2a5f67c89ff4e63e7e665 (patch) | |
| tree | 4e4a66f2866c448f0f487ab06b197617abef9a29 /src/libsyntax/print | |
| parent | 4b87655e69a6d07f03b104caaec80a042ad40bf1 (diff) | |
| download | rust-b308ed06846460150eb2a5f67c89ff4e63e7e665.tar.gz rust-b308ed06846460150eb2a5f67c89ff4e63e7e665.zip | |
Removed integer suffixes in libsyntax crate
Diffstat (limited to 'src/libsyntax/print')
| -rw-r--r-- | src/libsyntax/print/pp.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/print/pp.rs b/src/libsyntax/print/pp.rs index cbbd5289a5a..c1d922ea665 100644 --- a/src/libsyntax/print/pp.rs +++ b/src/libsyntax/print/pp.rs @@ -168,8 +168,8 @@ pub fn mk_printer<'a>(out: Box<io::Write+'a>, linewidth: usize) -> Printer<'a> { let n: usize = 3 * linewidth; debug!("mk_printer {}", linewidth); let token = vec![Token::Eof; n]; - let size = vec![0_isize; n]; - let scan_stack = vec![0_usize; n]; + let size = vec![0; n]; + let scan_stack = vec![0; n]; Printer { out: out, buf_len: n, |
