[clang] [alpha.webkit.UncountedCallArgsChecker] Ignore calls to WTF's container methods (PR #82156)
Artem Dergachev via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 19 12:38:47 PST 2024
================
@@ -25,6 +25,11 @@ using namespace ento;
namespace {
+bool stringEndsWith(const std::string &str, const std::string &suffix) {
+ auto index = str.rfind(suffix);
+ return index != std::string::npos && str.size() - suffix.size() == index;
+}
----------------
haoNoQ wrote:
Consider `llvm::StringRef::ends_with()`.
https://github.com/llvm/llvm-project/pull/82156
More information about the cfe-commits
mailing list