Skip to content

Commit

Permalink
release 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ibraheemdev committed Oct 3, 2024
1 parent e4413c4 commit c6099c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boxcar"
version = "0.2.5"
version = "0.2.6"
authors = ["Ibraheem Ahmed <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ pub struct Iter {

impl Iter {
/// Returns a pointer to the next entry in the iterator.
fn next<'v, T>(&mut self, vec: &'v Vec<T>) -> Option<(usize, *mut Entry<T>)> {
fn next<T>(&mut self, vec: &Vec<T>) -> Option<(usize, *mut Entry<T>)> {
// We returned every entry in the vector, we're done.
if self.yielded == vec.count() {
return None;
Expand Down

0 comments on commit c6099c6

Please sign in to comment.