summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-03-31 08:49:54 +0200
committerGitHub <noreply@github.com>2023-03-31 08:49:54 +0200
commit20f5d0f0efe6cc2d12808490e1fdeaefb1cf94cc (patch)
treee4bbf05509fa91e16119417bb011d67ae895da83
parentab8e94dd74ad29a9f927fc177f99a2e0b6497ad7 (diff)
parente1432d22fcf52f941e587e8e8b5f291d5a08ff9c (diff)
downloadATCD-20f5d0f0efe6cc2d12808490e1fdeaefb1cf94cc.tar.gz
Merge pull request #2066 from jwillemsen/jwi-nullptrfuzz
Mention that nullptr should be used
-rwxr-xr-xACE/bin/fuzz.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index f75c1b6d325..e6b857054b4 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -906,7 +906,7 @@ sub check_for_NULL ()
}
if ($disable == 0) {
if(/(\(|\)|\s+|=)NULL(\)|\s+|\;|\,)/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
- print_error ("$file:$.: NULL found");
+ print_error ("$file:$.: NULL found, use nullptr");
}
}
}