[PATCH] D20429: [clang-tidy] Handle using-decls with more than one shadow decl.
Haojian Wu via cfe-commits
cfe-commits at lists.llvm.org
Fri May 20 02:14:36 PDT 2016
hokein added inline comments.
================
Comment at: clang-tidy/misc/UnusedUsingDeclsCheck.cpp:59
@@ -59,1 +58,3 @@
/*SkipTrailingWhitespaceAndNewLine=*/true));
+ for (const auto It : Using->shadows()) {
+ const auto *TargetDecl = It->getTargetDecl()->getCanonicalDecl();
----------------
alexfh wrote:
> hokein wrote:
> > alexfh wrote:
> > > It's not iterator, so `It` is a confusing name. Something along the lines of `Shadow` or `UsingShadow` should be better.
> > Actually, the `Using->shadows()` returns an iterator range, but I'm fine renaming it here.
> Sure, it returns a `llvm::iterator_range<shadow_iterator>`, which is just a range adaptor for a pair of iterators. It's not a "collection of iterators", it's a "collection, defined by a pair of iterators". If you iterate over it using a range-based for loop, you get whatever is pointed by the iterators, not iterators.
I see it now. Thanks for the explanations :-).
Repository:
rL LLVM
http://reviews.llvm.org/D20429
More information about the cfe-commits
mailing list