kadircet marked 14 inline comments as done.
kadircet added inline comments.


================
Comment at: clang-tools-extra/clangd/AST.cpp:330
+                          [&](NestedNameSpecifier *NNS) {
+                            return llvm::any_of(
+                                VisibleNamespaceDecls,
----------------
ilya-biryukov wrote:
> ilya-biryukov wrote:
> > Maybe exit early if `NNS` is not a namespace here? No need to search for it 
> > in that case.
> `llvm::any_of` is `O(n)`, maybe search in `DenseSet` instead?
i didn't bother optimizing since it is really rare to have more than 10 `using 
namespace directives` for any given file.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D69608



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

Reply via email to