Remove uint/int inside components/util (partial #4745).

This leaves range.rs alone.
This commit is contained in:
Alexandru Cojocaru 2015-01-29 02:36:27 +01:00 committed by Ms2ger
parent 55f7636549
commit aaf7a7e439
11 changed files with 69 additions and 69 deletions

View file

@ -25,7 +25,7 @@ pub struct TaskPool {
}
impl TaskPool {
pub fn new(tasks: uint) -> TaskPool {
pub fn new(tasks: u32) -> TaskPool {
assert!(tasks > 0);
let (tx, rx) = channel();