diff options
| author | Alexis <a.beingessner@gmail.com> | 2015-02-20 01:18:12 -0500 |
|---|---|---|
| committer | Alexis <a.beingessner@gmail.com> | 2015-02-20 19:55:00 -0500 |
| commit | ac7d964dcf62f4c6104ae8d6bf3713f697215769 (patch) | |
| tree | 678eadeb55d6f5c919bbe926e23a36e14f902a71 /src/libstd/num/uint.rs | |
| parent | 97aa34046ffec7be1e3e4f383f205344ed67da6d (diff) | |
| download | rust-ac7d964dcf62f4c6104ae8d6bf3713f697215769.tar.gz rust-ac7d964dcf62f4c6104ae8d6bf3713f697215769.zip | |
make int/uint modules just re-exports
Diffstat (limited to 'src/libstd/num/uint.rs')
| -rw-r--r-- | src/libstd/num/uint.rs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/libstd/num/uint.rs b/src/libstd/num/uint.rs deleted file mode 100644 index c7b491381f3..00000000000 --- a/src/libstd/num/uint.rs +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or -// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license -// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -//! Deprecated: replaced by `usize`. -//! -//! The rollout of the new type will gradually take place over the -//! alpha cycle along with the development of clearer conventions -//! around integer types. - -#![unstable(feature = "std_misc")] -#![deprecated(since = "1.0.0", reason = "replaced by usize")] - -pub use core::uint::{BITS, BYTES, MIN, MAX}; - -uint_module! { uint } |
