Skip to content

Commit

Permalink
Whitelist iovec types in linkchecker
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Feb 14, 2019
1 parent 596f182 commit 034de8d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tools/linkchecker/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ fn check(cache: &mut Cache,
file.ends_with("log/index.html") ||
file.ends_with("ty/struct.Slice.html") ||
file.ends_with("ty/enum.Attributes.html") ||
file.ends_with("ty/struct.SymbolName.html") {
file.ends_with("ty/struct.SymbolName.html") ||
file.ends_with("io/struct.IoVec.html") ||
file.ends_with("io/struct.IoVecMut.html") {
return None;
}
// FIXME(#32553)
Expand Down

0 comments on commit 034de8d

Please sign in to comment.