1
Fork 0

libsyntax: rename functions from uint to usize

This commit is contained in:
Paul Collier 2015-01-17 23:49:08 +00:00
parent a32249d447
commit d5c83652b3
30 changed files with 97 additions and 97 deletions

View file

@ -757,7 +757,7 @@ pub fn fresh_name(src: &ast::Ident) -> ast::Name {
// create a fresh mark.
pub fn fresh_mark() -> ast::Mrk {
gensym("mark").uint() as u32
gensym("mark").usize() as u32
}
#[cfg(test)]