Mass rename uint/int to usize/isize

Now that support has been removed, all lingering use cases are renamed.
This commit is contained in:
Alex Crichton 2015-03-25 17:06:52 -07:00
parent 54f16b818b
commit 43bfaa4a33
1391 changed files with 5180 additions and 5238 deletions

View file

@ -114,7 +114,7 @@ fn test_user_defined_eq() {
// Our type.
struct SketchyNum {
num : int
num : isize
}
// Our implementation of `PartialEq` to support `==` and `!=`.