Skip to content
This repository was archived by the owner on May 9, 2022. It is now read-only.

Commit e004120

Browse files
committed
Remove useless lifetime.
Fixes #4
1 parent 49212e1 commit e004120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tree_bitmap/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub struct TreeBitmap<T: Sized> {
2020
should_drop: bool, // drop contents on drop?
2121
}
2222

23-
impl<'a, T: Sized> TreeBitmap<T> {
23+
impl<T: Sized> TreeBitmap<T> {
2424
/// Returns ````TreeBitmap ```` with 0 start capacity.
2525
pub fn new() -> Self {
2626
Self::with_capacity(0)

0 commit comments

Comments
 (0)