Skip to content

Commit c3774de

Browse files
committed
Fix unnecessary lifetime bound
This fixes nightly build
1 parent 9e2b86d commit c3774de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*.rs text eol=lf
22
*.lock text eol=lf
33
*.txt text eol=lf
4-
*.toml text eol=lf
4+
*.toml text eol=lf

src/diskio/threaded.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ impl<T: Iterator<Item = Task>> Iterator for JoinIterator<T> {
208208
}
209209
}
210210

211-
struct SubmitIterator<'a, 'b: 'a> {
211+
struct SubmitIterator<'a, 'b> {
212212
executor: &'a mut Threaded<'b>,
213213
item: Cell<Task>,
214214
}

0 commit comments

Comments
 (0)