Rollup merge of #22350 - brson:usize, r=Gankro

cc https://github.com/rust-lang/rust/issues/22240
This commit is contained in:
Manish Goregaokar
2015-02-15 18:32:58 +05:30
3 changed files with 120 additions and 120 deletions

View File

@@ -58,7 +58,7 @@ use mem;
#[repr(C)]
pub struct Slice<T> {
pub data: *const T,
pub len: uint,
pub len: usize,
}
impl<T> Copy for Slice<T> {}