ymandel accepted this revision.
ymandel added a comment.
This revision is now accepted and ready to land.

(but please wait for "accept" from an owner).



================
Comment at: clang-tools-extra/clang-tidy/utils/Matchers.h:56
+    if (Name.find("::") != std::string::npos) {
+      return llvm::Regex(Name).match(Node.getQualifiedNameAsString());
+    }
----------------
nit: while this change is not much worse than the existing code, the matcher 
really should perform this test for "::", and create the Regex, for each string 
just once. Regex construction is relatively expensive, and matchers of this 
sort (very generic) are often called quite frequently.

for that matter, this matcher is now really close to `matchesName` and would 
probably be best as a first-class matcher, rather than limited to 
clang-tidy/utils. But, I'll admit that such is beyond the scope of this patch.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D98738

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

Reply via email to