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

@ -9,7 +9,7 @@ use std::sync::Arc;
pub struct PersistentList<T> {
head: PersistentListLink<T>,
length: uint,
length: usize,
}
struct PersistentListEntry<T> {
@ -29,7 +29,7 @@ impl<T> PersistentList<T> where T: Send + Sync {
}
#[inline]
pub fn len(&self) -> uint {
pub fn len(&self) -> usize {
self.length
}