From db1e85d0923970e0d30e81bbbd1c0d8142ff282a Mon Sep 17 00:00:00 2001 From: Matthew Piziak Date: Tue, 11 Oct 2016 20:17:52 -0400 Subject: [PATCH] remove erroneous semicolons --- src/libcore/iter/range.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/libcore/iter/range.rs b/src/libcore/iter/range.rs index 6cfec06b0baa..f1697ea448ae 100644 --- a/src/libcore/iter/range.rs +++ b/src/libcore/iter/range.rs @@ -96,12 +96,12 @@ macro_rules! step_impl_unsigned { #[inline] fn add_one(&self) -> Self { - Add::add(*self, 1); + Add::add(*self, 1) } #[inline] fn sub_one(&self) -> Self { - Sub::sub(*self, 1); + Sub::sub(*self, 1) } #[inline] @@ -167,12 +167,12 @@ macro_rules! step_impl_signed { #[inline] fn add_one(&self) -> Self { - Add::add(*self, 1); + Add::add(*self, 1) } #[inline] fn sub_one(&self) -> Self { - Sub::sub(*self, 1); + Sub::sub(*self, 1) } #[inline] @@ -216,12 +216,12 @@ macro_rules! step_impl_no_between { #[inline] fn add_one(&self) -> Self { - Add::add(*self, 1); + Add::add(*self, 1) } #[inline] fn sub_one(&self) -> Self { - Sub::sub(*self, 1); + Sub::sub(*self, 1) } #[inline]