PiotrZSL added a comment.

Remove example from commit message, it's already included in patch.
Simply commit message should be properly formatted without unnecessary 
information.



================
Comment at: clang-tools-extra/clang-tidy/utils/Matchers.h:115
       default:
-        return Regex.match(ND.getName());
+        if (const IdentifierInfo *II = ND.getIdentifier(); II)
+          return Regex.match(II->getName());
----------------
Not needed.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D154884/new/

https://reviews.llvm.org/D154884

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to