Skip to content

Commit

Permalink
core::raw: uint -> usize
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Feb 14, 2015
1 parent b63cee4 commit 8f5d698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/raw.rs
Expand Up @@ -25,7 +25,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> {}
Expand Down

0 comments on commit 8f5d698

Please sign in to comment.