diff options
| author | Chris Wong <lambda.fairy@gmail.com> | 2014-01-25 20:37:51 +1300 |
|---|---|---|
| committer | Chris Wong <lambda.fairy@gmail.com> | 2014-01-25 21:38:25 +1300 |
| commit | 988e4f0a1c2802921375271bdc19f03650c024d2 (patch) | |
| tree | b2d2913ca7575e8e52f2cf6e7975ca2f0f148286 /src/libstd/rand | |
| parent | de57a22b9a8c8416cace31c9bd3ec4c9a6888017 (diff) | |
| download | rust-988e4f0a1c2802921375271bdc19f03650c024d2.tar.gz rust-988e4f0a1c2802921375271bdc19f03650c024d2.zip | |
Uppercase numeric constants
The following are renamed: * `min_value` => `MIN` * `max_value` => `MAX` * `bits` => `BITS` * `bytes` => `BYTES` Fixes #10010.
Diffstat (limited to 'src/libstd/rand')
| -rw-r--r-- | src/libstd/rand/rand_impls.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/rand/rand_impls.rs b/src/libstd/rand/rand_impls.rs index 1c90ef148fc..8f4752b3c44 100644 --- a/src/libstd/rand/rand_impls.rs +++ b/src/libstd/rand/rand_impls.rs @@ -1,4 +1,4 @@ -// Copyright 2013 The Rust Project Developers. See the COPYRIGHT +// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // @@ -19,7 +19,7 @@ use uint; impl Rand for int { #[inline] fn rand<R: Rng>(rng: &mut R) -> int { - if int::bits == 32 { + if int::BITS == 32 { rng.gen::<i32>() as int } else { rng.gen::<i64>() as int @@ -58,7 +58,7 @@ impl Rand for i64 { impl Rand for uint { #[inline] fn rand<R: Rng>(rng: &mut R) -> uint { - if uint::bits == 32 { + if uint::BITS == 32 { rng.gen::<u32>() as uint } else { rng.gen::<u64>() as uint |
