diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2013-07-01 13:51:13 +1000 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2013-07-01 17:52:57 +1000 |
| commit | c437a16c5d8c00b39dc6c5e36011def997d77224 (patch) | |
| tree | ba408e4897a59f96ba64a82c07f1307a2af8658a /src/libstd/num/int.rs | |
| parent | da4384583b84c262dec82be4b041f0332ca16e57 (diff) | |
| download | rust-c437a16c5d8c00b39dc6c5e36011def997d77224.tar.gz rust-c437a16c5d8c00b39dc6c5e36011def997d77224.zip | |
rustc: add a lint to enforce uppercase statics.
Diffstat (limited to 'src/libstd/num/int.rs')
| -rw-r--r-- | src/libstd/num/int.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/num/int.rs b/src/libstd/num/int.rs index d3c2733b47d..d39b4b2b911 100644 --- a/src/libstd/num/int.rs +++ b/src/libstd/num/int.rs @@ -10,6 +10,8 @@ //! Operations and constants for `int` +#[allow(non_uppercase_statics)]; + use num::BitCount; pub use self::generated::*; |
