Skip to content

Commit 3c0af17

Browse files
authored
Merge pull request #1 from erichCompSci/499-OwnedGroupByAndChunksIntoIter-alloc-fix
Switched the rc from std to alloc so that it'll compile when std is not available
2 parents 7cb47db + 66ffea6 commit 3c0af17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/groupbylazy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use alloc::vec::{self, Vec};
22
use std::cell::{Cell, RefCell};
33
use std::ops::Deref;
4-
use std::rc::Rc;
4+
use alloc::rc::Rc;
55

66
/// A trait to unify FnMut for GroupBy with the chunk key in IntoChunks
77
trait KeyFunction<A> {

0 commit comments

Comments
 (0)