Semicolon was at wrong place in let statement
This commit is contained in:
parent
83c3b7f5a4
commit
b3f44c1335
1 changed files with 4 additions and 4 deletions
|
@ -140,8 +140,8 @@ impl<T> Iterator for RawValIter<T> {
|
|||
self.start = if mem::size_of::<T>() == 0 {
|
||||
(self.start as usize + 1) as *const _
|
||||
} else {
|
||||
self.start.offset(1);
|
||||
}
|
||||
self.start.offset(1)
|
||||
};
|
||||
Some(result)
|
||||
}
|
||||
}
|
||||
|
@ -164,8 +164,8 @@ impl<T> DoubleEndedIterator for RawValIter<T> {
|
|||
self.end = if mem::size_of::<T>() == 0 {
|
||||
(self.end as usize - 1) as *const _
|
||||
} else {
|
||||
self.end.offset(-1);
|
||||
}
|
||||
self.end.offset(-1)
|
||||
};
|
||||
Some(ptr::read(self.end))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue