Skip to content

Commit be571f3

Browse files
committed
Back out push_into change
Signed-off-by: Moritz Hoffmann <[email protected]>
1 parent 0d03378 commit be571f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

container/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ impl<T, C: SizableContainer + PushInto<T>> PushInto<T> for CapacityContainerBuil
197197
self.current.ensure_capacity(&mut self.empty);
198198

199199
// Push item
200-
self.current.push_into(item);
200+
self.current.push(item);
201201

202202
// Maybe flush
203203
if self.current.at_capacity() {

0 commit comments

Comments
 (0)