diff options
| author | Steven Fackler <sfackler@gmail.com> | 2019-02-13 20:07:22 -0800 |
|---|---|---|
| committer | Steven Fackler <sfackler@gmail.com> | 2019-02-13 20:07:22 -0800 |
| commit | 034de8da7d1c290ac1f4485373f3ee91f624566d (patch) | |
| tree | b7f13e762db396f804136d4630d00872ec39efe5 | |
| parent | 596f18201c7863d8b02fe6fa1872cf3ba2b6b381 (diff) | |
Whitelist iovec types in linkchecker
| -rw-r--r-- | src/tools/linkchecker/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/linkchecker/main.rs b/src/tools/linkchecker/main.rs index af704ce260d..9a6c97dbca0 100644 --- a/src/tools/linkchecker/main.rs +++ b/src/tools/linkchecker/main.rs @@ -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) |
