diff options
| author | Brian Anderson <banderson@mozilla.com> | 2015-02-14 15:43:51 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2015-02-14 15:43:51 -0800 |
| commit | 8f5d698bac39fba76659b197b476d79682ceae3a (patch) | |
| tree | 7443b9ddda656399267df5d14b4502d219e84817 | |
| parent | b63cee4a11fcfecf20ed8419bc3bd6859e6496bc (diff) | |
| download | rust-8f5d698bac39fba76659b197b476d79682ceae3a.tar.gz rust-8f5d698bac39fba76659b197b476d79682ceae3a.zip | |
core::raw: uint -> usize
| -rw-r--r-- | src/libcore/raw.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/raw.rs b/src/libcore/raw.rs index 3fd244b46e3..10b9361db63 100644 --- a/src/libcore/raw.rs +++ b/src/libcore/raw.rs @@ -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> {} |
