mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Add a comment about DepthFirstIterator's skipchildren behavior
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236904 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a54f2b87f7
commit
fd5c9868cb
@ -159,8 +159,10 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
// skips all children of the current node and traverses to next node
|
||||
//
|
||||
/// \brief Skips all children of the current node and traverses to next node
|
||||
///
|
||||
/// Note: This function takes care of incrementing the iterator. If you
|
||||
/// always increment and call this function, you risk walking off the end.
|
||||
df_iterator &skipChildren() {
|
||||
VisitStack.pop_back();
|
||||
if (!VisitStack.empty())
|
||||
|
Loading…
x
Reference in New Issue
Block a user