Lines Matching full:unnecessary

2586 …"$realfile is marked as 'obsolete' in the MAINTAINERS hierarchy.  No unnecessary modifications ple…
3624 "Using $1 is unnecessary\n" . $herecurr);
4073 # check for unnecessary <signed> int declarations of short/long/long long
4087 "Prefer '$new_type' over '$type' as the int is unnecessary\n" . $herecurr) &&
4365 # unnecessary space "type (*funcptr)(args...)"
4376 # unnecessary space "type ( *funcptr)(args...)"
4380 "Unnecessary space after function pointer open parenthesis\n" . $herecurr);
4383 # unnecessary space "type (* funcptr)(args...)"
4387 "Unnecessary space before function pointer name\n" . $herecurr);
4390 # unnecessary space "type (*funcptr )(args...)"
4394 "Unnecessary space after function pointer name\n" . $herecurr);
4397 # unnecessary space "type (*funcptr) (args...)"
4401 "Unnecessary space before function pointer arguments\n" . $herecurr);
4884 # check unnecessary parentheses around addressof/dereference single $Lvals
4890 "Unnecessary parentheses around $var\n" . $herecurr) &&
4896 # check for unnecessary parentheses around function pointer uses
4902 "Unnecessary parentheses around function pointer $var\n" . $herecurr) &&
4910 # check for unnecessary parentheses around comparisons in if uses
4932 "Unnecessary parentheses around '$match'\n" . $herectx);
4968 # unnecessary return in a void function
4980 # if statements using unnecessary parentheses - ie: if ((foo == bar))
4990 "Unnecessary parentheses$msg\n" . $herecurr);
5433 "Avoid unnecessary line continuations\n" . $herecurr);
5575 # check for unnecessary blank lines around braces
5652 "unnecessary whitespace before a quoted newline\n" . $herecurr) &&
5760 # check for unnecessary "Out of Memory" messages
5774 "Possible unnecessary 'out of memory' message\n" . $hereprev);
5783 "Possible unnecessary $level\n" . $herecurr) &&
6120 "Unnecessary typecast of c90 int constant\n" . $herecurr) &&
6440 … "unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
6768 # This uses a shortcut match to avoid unnecessary uses of a slow foreach loop