[clang-tools-extra] [clang-tidy] Enhance modernize-use-starts-ends-with to handle substr patterns (PR #116033)
Nicolas van Kempen via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 18 08:18:44 PST 2024
================
@@ -171,10 +182,25 @@ void UseStartsEndsWithCheck::registerMatchers(MatchFinder *Finder) {
hasRHS(lengthExprForStringNode("needle")))))
.bind("expr"),
this);
+
+ Finder->addMatcher(
----------------
nicovank wrote:
Nit for consistency.
```suggestion
// Case 6: X.substr(0, LEN(Y)) [!=]= Y -> ends_with.
Finder->addMatcher(
```
https://github.com/llvm/llvm-project/pull/116033
More information about the cfe-commits
mailing list