libcore: Get rid of move.

This commit is contained in:
Luqman Aden
2013-02-15 03:51:28 -05:00
committed by Luqman Aden
parent 78f3e0da70
commit 5912b1448c
30 changed files with 358 additions and 362 deletions

View File

@@ -87,7 +87,7 @@ impl<A: ToStr> ToStr for ~[A] {
}
}
str::push_char(&mut acc, ']');
move acc
acc
}
}
}