[PATCH] D128930: [pseudo] Add ForestNode descendants iterator, print ambiguous/opaque node stats.
Thorsten via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 8 13:38:07 PDT 2022
tschuett added inline comments.
================
Comment at: clang-tools-extra/pseudo/include/clang-pseudo/Forest.h:202
+class ForestNode::RecursiveIterator
+ : public std::iterator<std::input_iterator_tag, const ForestNode> {
+ llvm::DenseSet<const ForestNode *> Seen;
----------------
`std::iterator` is deprecated in C++17 and creates warnings.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128930/new/
https://reviews.llvm.org/D128930
More information about the cfe-commits
mailing list