Fix errors, remove unused files

This commit is contained in:
GuillaumeGomez 2015-02-19 01:12:45 +01:00 committed by Guillaume Gomez
parent 9e28caef31
commit c74d49c804
4 changed files with 13 additions and 54 deletions

View File

@ -1,21 +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 `isize`.
//!
//! 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 = "core")]
#![deprecated(since = "1.0.0", reason = "replaced by isize")]
#[cfg(target_pointer_width = "32")] int_module! { int, 32 }
#[cfg(target_pointer_width = "64")] int_module! { int, 64 }

View File

@ -1,20 +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 = "core")]
#![deprecated(since = "1.0.0", reason = "replaced by usize")]
uint_module! { uint, int, ::int::BITS }

View File

@ -12,18 +12,18 @@
use core::prelude::*; use core::prelude::*;
use core::char; use core::char;
use core::int; use core::isize;
use core::uint; use core::usize;
use {Rand,Rng}; use {Rand,Rng};
impl Rand for int { impl Rand for isize {
#[inline] #[inline]
fn rand<R: Rng>(rng: &mut R) -> int { fn rand<R: Rng>(rng: &mut R) -> isize {
if int::BITS == 32 { if isize::BITS == 32 {
rng.gen::<i32>() as int rng.gen::<i32>() as isize
} else { } else {
rng.gen::<i64>() as int rng.gen::<i64>() as isize
} }
} }
} }
@ -56,13 +56,13 @@ impl Rand for i64 {
} }
} }
impl Rand for uint { impl Rand for usize {
#[inline] #[inline]
fn rand<R: Rng>(rng: &mut R) -> uint { fn rand<R: Rng>(rng: &mut R) -> usize {
if uint::BITS == 32 { if usize::BITS == 32 {
rng.gen::<u32>() as uint rng.gen::<u32>() as usize
} else { } else {
rng.gen::<u64>() as uint rng.gen::<u64>() as usize
} }
} }
} }

View File

@ -109,7 +109,7 @@
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(collections)] #![feature(collections)]
#![feature(core)] #![feature(core)]
#![feature(int_uint)] #![feature(hash)]
#![feature(lang_items)] #![feature(lang_items)]
#![feature(libc)] #![feature(libc)]
#![feature(linkage, thread_local, asm)] #![feature(linkage, thread_local, asm)]