core: Demode int/uint mods
This commit is contained in:
parent
ee2ce036cc
commit
c0c8d3aa8f
15 changed files with 34 additions and 26 deletions
|
@ -676,7 +676,7 @@ pure fn eq_slice(a: &str, b: &str) -> bool {
|
|||
let a_len = a.len();
|
||||
let b_len = b.len();
|
||||
if a_len != b_len { return false; }
|
||||
let mut end = uint::min(a_len, b_len);
|
||||
let mut end = uint::min(&a_len, &b_len);
|
||||
|
||||
let mut i = 0u;
|
||||
while i < end {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue