Commit 269d0773c701d81dc7eeedae88f9a34cd7c34298

Ryan C. Gordon 2021-07-13T11:11:55

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

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/build-scripts/wikiheaders.pl b/build-scripts/wikiheaders.pl
index 1ed9b53..0d1de83 100755
--- a/build-scripts/wikiheaders.pl
+++ b/build-scripts/wikiheaders.pl
@@ -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;
         }