1
Fork 0

Fixed all unnecessary muts in language core

This commit is contained in:
Isaac van Bakel 2017-08-01 13:03:03 +01:00
parent 35b9bd0559
commit 400075d9d9
32 changed files with 41 additions and 41 deletions

View file

@ -1751,7 +1751,7 @@ impl<'a, T> IntoIterator for &'a mut Vec<T> {
type Item = &'a mut T;
type IntoIter = slice::IterMut<'a, T>;
fn into_iter(mut self) -> slice::IterMut<'a, T> {
fn into_iter(self) -> slice::IterMut<'a, T> {
self.iter_mut()
}
}