From 847a897fb33cb035d0311d717b094cad5e137787 Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Fri, 10 Apr 2015 19:13:34 +0200 Subject: [PATCH] fix some comments. --- src/libsyntax/ext/deriving/generic/mod.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/libsyntax/ext/deriving/generic/mod.rs b/src/libsyntax/ext/deriving/generic/mod.rs index 6a85297b6580f..ac96375095e14 100644 --- a/src/libsyntax/ext/deriving/generic/mod.rs +++ b/src/libsyntax/ext/deriving/generic/mod.rs @@ -1067,8 +1067,8 @@ impl<'a> MethodDef<'a> { .collect::>(); // 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 = self_arg_names.iter() .map(|name| { let vi_suffix = format!("{}_vi", &name[..]); cx.ident_of(&vi_suffix[..]) }) @@ -1186,18 +1186,19 @@ impl<'a> MethodDef<'a> { // 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 { 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> = Vec::new();