From e1432d22fcf52f941e587e8e8b5f291d5a08ff9c Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Wed, 29 Mar 2023 15:55:22 +0200 Subject: Mention that nullptr should be used * ACE/bin/fuzz.pl: --- ACE/bin/fuzz.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } } } -- cgit v1.2.1