]> git.lizzy.rs Git - rust.git/commitdiff
Removed integer suffixes in libsyntax crate
authorsrinivasreddy <thatiparthysreenivas@gmail.com>
Thu, 10 Mar 2016 18:35:53 +0000 (00:05 +0530)
committersrinivasreddy <thatiparthysreenivas@gmail.com>
Sat, 12 Mar 2016 02:53:38 +0000 (08:23 +0530)
src/libsyntax/ast.rs
src/libsyntax/print/pp.rs

index a8bea2da833496675a2b1bd76070b6fff9023265..f7621b0131ad45d919bae6619518b18de8984e6c 100644 (file)
@@ -927,7 +927,7 @@ pub enum ExprKind {
     Binary(BinOp, P<Expr>, P<Expr>),
     /// A unary operation (For example: `!x`, `*x`)
     Unary(UnOp, P<Expr>),
-    /// A literal (For example: `1u8`, `"foo"`)
+    /// A literal (For example: `1`, `"foo"`)
     Lit(P<Lit>),
     /// A cast (`foo as f64`)
     Cast(P<Expr>, P<Ty>),
@@ -1016,7 +1016,7 @@ pub enum ExprKind {
 
     /// An array literal constructed from one repeated element.
     ///
-    /// For example, `[1u8; 5]`. The first expression is the element
+    /// For example, `[1; 5]`. The first expression is the element
     /// to be repeated; the second is the number of times to repeat it.
     Repeat(P<Expr>, P<Expr>),
 
@@ -1288,7 +1288,7 @@ pub enum LitKind {
     Byte(u8),
     /// A character literal (`'a'`)
     Char(char),
-    /// An integer literal (`1u8`)
+    /// An integer literal (`1`)
     Int(u64, LitIntType),
     /// A float literal (`1f64` or `1E10f64`)
     Float(InternedString, FloatTy),
index cbbd5289a5a2d5415a846ebfa050725f96aeac85..c1d922ea665b11d3b15fa04b0cb09f1d915b46ea 100644 (file)
@@ -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,