wikiheaders: Ignore doxygen comments that aren't "/**" on a line by itself.

Makes this ignore /** single line comments */
This commit is contained in:
Ryan C. Gordon 2021-07-13 11:11:55 -04:00
parent 8130950e92
commit 269d0773c7
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ while (readdir(DH)) {
while (<FH>) {
chomp;
if (not /\A\/\*\*/) { # not doxygen comment start?
if (not /\A\/\*\*\s*\Z/) { # not doxygen comment start?
push @contents, $_;
next;
}