Mass rename uint/int to usize/isize
Now that support has been removed, all lingering use cases are renamed.
This commit is contained in:
parent
54f16b818b
commit
43bfaa4a33
1391 changed files with 5180 additions and 5238 deletions
|
|
@ -9,10 +9,10 @@
|
|||
// except according to those terms.
|
||||
|
||||
pub trait Trait {
|
||||
fn method(&self) -> int;
|
||||
fn method(&self) -> isize;
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub fn test(t: &Trait) -> int {
|
||||
pub fn test(t: &Trait) -> isize {
|
||||
t.method()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue