diff --git a/allocative/src/impls/std/collections.rs b/allocative/src/impls/std/collections.rs index ae0c215..75b9a39 100644 --- a/allocative/src/impls/std/collections.rs +++ b/allocative/src/impls/std/collections.rs @@ -33,7 +33,7 @@ impl Allocative for BTreeSet { } } -impl Allocative for HashMap { +impl Allocative for HashMap { fn visit<'a, 'b: 'a>(&self, visitor: &'a mut Visitor<'b>) { let mut visitor = visitor.enter_self_sized::(); // TODO: can do better extra capacity. @@ -42,7 +42,7 @@ impl Allocative for HashMap { } } -impl Allocative for HashSet { +impl Allocative for HashSet { fn visit<'a, 'b: 'a>(&self, visitor: &'a mut Visitor<'b>) { let mut visitor = visitor.enter_self_sized::(); // TODO: can do better extra capacity.