Skip to content

Commit 3f2cfa7

Browse files
authored
Merge pull request #51 from orxfun/relax-default-requiremtn-from-ptr-iter
relax Default requirement from pointer iter
2 parents 349e311 + 98a8101 commit 3f2cfa7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orx-pinned-vec"
3-
version = "3.19.0"
3+
version = "3.20.0"
44
edition = "2024"
55
authors = ["orxfun <[email protected]>"]
66
description = "`PinnedVec` trait defines the interface for vectors which guarantee that elements added to the vector are pinned to their memory locations unless explicitly changed."

src/concurrent_pinned_vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub trait ConcurrentPinnedVec<T> {
2525
Self: 'a;
2626

2727
/// Iterator yielding pointers to elements of the vector.
28-
type PtrIter<'a>: ExactSizeIterator<Item = *mut T> + Default
28+
type PtrIter<'a>: ExactSizeIterator<Item = *mut T>
2929
where
3030
Self: 'a;
3131

0 commit comments

Comments
 (0)