Skip to content

Commit

Permalink
Fix unnecessary lifetime bound
Browse files Browse the repository at this point in the history
This fixes nightly build
  • Loading branch information
tesuji committed Jun 20, 2019
1 parent 9e2b86d commit c3774de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.rs text eol=lf
*.lock text eol=lf
*.txt text eol=lf
*.toml text eol=lf
*.toml text eol=lf
2 changes: 1 addition & 1 deletion src/diskio/threaded.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>,
}
Expand Down

0 comments on commit c3774de

Please sign in to comment.