Skip to content

Commit

Permalink
core: Use int/isize in Clone boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Feb 14, 2015
1 parent 8f5d698 commit 438e527
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/clone.rs
Expand Up @@ -61,13 +61,13 @@ macro_rules! clone_impl {
}
}

clone_impl! { int }
clone_impl! { isize }
clone_impl! { i8 }
clone_impl! { i16 }
clone_impl! { i32 }
clone_impl! { i64 }

clone_impl! { uint }
clone_impl! { usize }
clone_impl! { u8 }
clone_impl! { u16 }
clone_impl! { u32 }
Expand Down

0 comments on commit 438e527

Please sign in to comment.