about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorMatthew Piziak <matthew.piziak@gmail.com>2016-10-11 20:17:52 -0400
committerMatthew Piziak <matthew.piziak@gmail.com>2016-10-11 20:17:52 -0400
commitdb1e85d0923970e0d30e81bbbd1c0d8142ff282a (patch)
tree0a6854f0a0c52b055e1c0b0fea85179d83abf124 /src/libcore
parentdba66788bd4f4755bbc8ffb6b17e075499efa7b7 (diff)
downloadrust-db1e85d0923970e0d30e81bbbd1c0d8142ff282a.tar.gz
rust-db1e85d0923970e0d30e81bbbd1c0d8142ff282a.zip
remove erroneous semicolons
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter/range.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libcore/iter/range.rs b/src/libcore/iter/range.rs
index 6cfec06b0ba..f1697ea448a 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]