Fix unnecessary lifetime bound

This fixes nightly build
This commit is contained in:
Lzu Tao
2019-06-20 13:48:25 +07:00
parent 9e2b86daff
commit c3774de477
2 changed files with 2 additions and 2 deletions

2
.gitattributes vendored
View File

@@ -1,4 +1,4 @@
*.rs text eol=lf
*.lock text eol=lf
*.txt text eol=lf
*.toml text eol=lf
*.toml text eol=lf

View File

@@ -208,7 +208,7 @@ impl<T: Iterator<Item = Task>> Iterator for JoinIterator<T> {
}
}
struct SubmitIterator<'a, 'b: 'a> {
struct SubmitIterator<'a, 'b> {
executor: &'a mut Threaded<'b>,
item: Cell<Task>,
}