]> ruderich.org/simon Gitweb - blhc/blhc.git/blobdiff - bin/blhc
Fix false positives for comment lines
[blhc/blhc.git] / bin / blhc
index efb7f3b20aa6c98a812dfe8fcadcaa141d249c4d..4d2fb099cc70f72425791982b1c4ce1e528ccdac 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -850,6 +850,7 @@ foreach my $file (@ARGV) {
             }
         }
 
+        next if $line =~ /^\s*#/;
         # Ignore compiler warnings for now.
         next if $line =~ /$warning_regex/o;