提交 77b9a53a 编写于 作者: J Joe Perches 提交者: Linus Torvalds

checkpatch: don't warn on blank lines before/after braces as often

Check to make sure the blank lines aren't comment lines like:

  bool foo(bool bar)
  {
	/* Don't warn on a leading comment */
	return !bar;
	/* Don't warn on a trailing comment either */
  }
Signed-off-by: NJoe Perches <joe@perches.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 c4a62ef9
...@@ -3258,11 +3258,11 @@ sub process { ...@@ -3258,11 +3258,11 @@ sub process {
} }
# check for unnecessary blank lines around braces # check for unnecessary blank lines around braces
if (($line =~ /^.\s*}\s*$/ && $prevline =~ /^.\s*$/)) { if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
CHK("BRACES", CHK("BRACES",
"Blank lines aren't necessary before a close brace '}'\n" . $hereprev); "Blank lines aren't necessary before a close brace '}'\n" . $hereprev);
} }
if (($line =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) { if (($rawline =~ /^.\s*$/ && $prevline =~ /^..*{\s*$/)) {
CHK("BRACES", CHK("BRACES",
"Blank lines aren't necessary after an open brace '{'\n" . $hereprev); "Blank lines aren't necessary after an open brace '{'\n" . $hereprev);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册