summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-03-29 15:55:22 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-03-29 15:55:22 +0200
commite1432d22fcf52f941e587e8e8b5f291d5a08ff9c (patch)
treefae5e4eb1a4bbeb8034ba730790d85d70b8b6b66
parent5f7f5729b3123c2f1c2874c6d560fba46a1749f1 (diff)
downloadATCD-e1432d22fcf52f941e587e8e8b5f291d5a08ff9c.tar.gz
Mention that nullptr should be used
* ACE/bin/fuzz.pl:
-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");
}
}
}