Skip to content

Commit 8f5d698

Browse files
committed
core::raw: uint -> usize
1 parent b63cee4 commit 8f5d698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/raw.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use mem;
2525
#[repr(C)]
2626
pub struct Slice<T> {
2727
pub data: *const T,
28-
pub len: uint,
28+
pub len: usize,
2929
}
3030

3131
impl<T> Copy for Slice<T> {}

0 commit comments

Comments
 (0)