Skip to content

Commit 335f06f

Browse files
committed
autodoc: Remove useless loop
Commit ef30258 added this loop, but there was a logic error. It also added a loop above it that completely empties the hash this loop is iterating over. Hence there is never anything there by the time this loop is encountered.
1 parent 5e25d6e commit 335f06f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

autodoc.pl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1974,9 +1974,6 @@ sub add_defn {
19741974
warn "no docs for $_\n";
19751975
}
19761976

1977-
for my $key (sort keys %deferreds) {
1978-
warn "no docs for $key\n";
1979-
}
19801977

19811978
foreach (sort keys %missing) {
19821979
warn "Function '$_', documented in $missing{$_}, not listed in embed.fnc"

0 commit comments

Comments
 (0)