1
Fork 0

core: Demode int/uint mods

This commit is contained in:
Brian Anderson 2012-08-29 16:11:06 -07:00
parent ee2ce036cc
commit c0c8d3aa8f
15 changed files with 34 additions and 26 deletions

View file

@ -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 {