Skip to content

Commit

Permalink
remove erroneous semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-piziak committed Oct 12, 2016
1 parent dba6678 commit db1e85d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/libcore/iter/range.rs
Expand Up @@ -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]
Expand Down Expand Up @@ -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]
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit db1e85d

Please sign in to comment.