[PATCH] D27621: [clang-tidy] check to find declarations declaring more than one name

Firat Kasmis via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sun Dec 11 13:38:37 PST 2016


firolino added a comment.

@Eugene.Zelenko No modernize-* check was reported. I applied //most// of the readability-* checks. For example, I did not put braces around:

  if (DeclStmt == nullptr)
      return;
  
  if (DeclStmt->isSingleDecl() || DeclStmt->getLocStart().isMacroID())
      return;

Hope that is ok?


https://reviews.llvm.org/D27621





More information about the cfe-commits mailing list