Skip to content

Commit 034de8d

Browse files
committed
Whitelist iovec types in linkchecker
1 parent 596f182 commit 034de8d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tools/linkchecker/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ fn check(cache: &mut Cache,
134134
file.ends_with("log/index.html") ||
135135
file.ends_with("ty/struct.Slice.html") ||
136136
file.ends_with("ty/enum.Attributes.html") ||
137-
file.ends_with("ty/struct.SymbolName.html") {
137+
file.ends_with("ty/struct.SymbolName.html") ||
138+
file.ends_with("io/struct.IoVec.html") ||
139+
file.ends_with("io/struct.IoVecMut.html") {
138140
return None;
139141
}
140142
// FIXME(#32553)

0 commit comments

Comments
 (0)