Skip to content

Commit

Permalink
Fix bad RBTree iterator start, increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
MrElectrify committed Mar 7, 2024
1 parent ed2942b commit e04c70c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "eastl-rs"
authors = ["Andrew Buck"]
description = "EASTL binary-compatible Rust implementations"
documentation = "https://docs.rs/crate/eastl-rs"
version = "0.10.3"
version = "0.10.4"
edition = "2021"
license-file = "LICENSE"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/internal/rb_tree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl<K: Eq, V, A: Allocator, C: Compare<K>> RBTree<K, V, A, C> {
#[allow(clippy::needless_arbitrary_self_type)]
pub unsafe fn iter(self: Self) -> Iter<K, V> {
Iter {
node: self.parent,
node: self.begin,
_marker: PhantomData,
}
}
Expand Down

0 comments on commit e04c70c

Please sign in to comment.