Skip to content

Commit

Permalink
autodoc: Remove useless loop
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
khwilliamson committed Jul 4, 2024
1 parent 5e25d6e commit 98be0cd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions autodoc.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1974,9 +1974,6 @@ sub add_defn {
warn "no docs for $_\n";
}

for my $key (sort keys %deferreds) {
warn "no docs for $key\n";
}

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

0 comments on commit 98be0cd

Please sign in to comment.