Skip to content

Commit

Permalink
rust 2021 edition
Browse files Browse the repository at this point in the history
ibraheemdev committed Mar 8, 2024
1 parent b4837ae commit 6d0d3e9
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "seize"
version = "0.2.5"
edition = "2018"
edition = "2021"
license = "MIT"
authors = ["Ibraheem Ahmed <[email protected]>"]
description = "Fast, efficient, and robust memory reclamation for concurrent data structures."
4 changes: 2 additions & 2 deletions tests/lib.rs
Original file line number Diff line number Diff line change
@@ -332,7 +332,7 @@ fn reentrant() {

move || {
let guard = collector.enter();
for object in objects.0 {
for object in { objects }.0 {
unsafe { guard.retire(object, reclaim::boxed::<DropTrack>) }
}
}
@@ -367,7 +367,7 @@ fn reentrant() {

move || {
let guard = collector.enter();
for object in objects.0 {
for object in { objects }.0 {
unsafe { guard.retire(object, reclaim::boxed::<DropTrack>) }
}
}

0 comments on commit 6d0d3e9

Please sign in to comment.