]> git.lizzy.rs Git - rust.git/commitdiff
fix some comments.
authorFelix S. Klock II <pnkfelix@pnkfx.org>
Fri, 10 Apr 2015 17:13:34 +0000 (19:13 +0200)
committerFelix S. Klock II <pnkfelix@pnkfx.org>
Fri, 10 Apr 2015 17:13:34 +0000 (19:13 +0200)
src/libsyntax/ext/deriving/generic/mod.rs

index 6a85297b6580fbe20a2543574ba21e68e88e6439..ac96375095e143a8bfd10635f74ee8bd011133ee 100644 (file)
@@ -1067,8 +1067,8 @@ fn build_enum_match_tuple(
             .collect::<Vec<ast::Ident>>();
 
         // The `vi_idents` will be bound, solely in the catch-all, to
-        // a series of let statements mapping each self_arg to an isize
-        // corresponding to its discriminant value.
+        // a series of let statements mapping each self_arg to an int
+        // value corresponding to its discriminant.
         let vi_idents: Vec<ast::Ident> = self_arg_names.iter()
             .map(|name| { let vi_suffix = format!("{}_vi", &name[..]);
                           cx.ident_of(&vi_suffix[..]) })
@@ -1186,18 +1186,19 @@ fn build_enum_match_tuple(
             // Build a series of let statements mapping each self_arg
             // to its discriminant value. If this is a C-style enum
             // with a specific repr type, then casts the values to
-            // that type.  Otherwise casts to `isize`.
+            // that type.  Otherwise casts to `i32` (the default repr
+            // type).
             //
             // i.e. for `enum E<T> { A, B(1), C(T, T) }`, and a deriving
             // with three Self args, builds three statements:
             //
             // ```
             // let __self0_vi = unsafe {
-            //     std::intrinsics::discriminant_value(&self) } as isize;
+            //     std::intrinsics::discriminant_value(&self) } as i32;
             // let __self1_vi = unsafe {
-            //     std::intrinsics::discriminant_value(&__arg1) } as isize;
+            //     std::intrinsics::discriminant_value(&__arg1) } as i32;
             // let __self2_vi = unsafe {
-            //     std::intrinsics::discriminant_value(&__arg2) } as isize;
+            //     std::intrinsics::discriminant_value(&__arg2) } as i32;
             // ```
             let mut index_let_stmts: Vec<P<ast::Stmt>> = Vec::new();