diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-04-22 19:52:34 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-04-22 19:52:34 +0000 |
commit | 824322f5fb2878c67a1cddd7588c97c3390ef4dc (patch) | |
tree | 02866395e15c32a2a2d654d4bbaa739345d45cdd /bin | |
parent | 0312bc0159f330aac67f8ab17619f71bda49de5c (diff) | |
download | ATCD-824322f5fb2878c67a1cddd7588c97c3390ef4dc.tar.gz |
ChangeLogTag:Thu Apr 22 11:53:00 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fuzz.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/fuzz.pl b/bin/fuzz.pl index c4f34481a22..b77922456ff 100755 --- a/bin/fuzz.pl +++ b/bin/fuzz.pl @@ -1151,7 +1151,11 @@ sub check_for_non_bool_operators () ++$line; if ($found_bool == 0 - && /[^\w]bool\s*$/ || /^bool\s*$/ || /[^\w]return\s*$/) + && (/[^\w]bool\s*$/ + || /^bool\s*$/ + || /\sbool\s\w/ + || /^bool\s\w/ + || /[^\w]return\s*$/)) { $found_bool = 1; $found_return_type = 0; |