Skip to content
Snippets Groups Projects
Commit 193f2e2e authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-271

Checker: UNINIT_CTOR
Function: LLTreeDFSIter<LLView, std::list<LLView *, std::allocator<LLView *>>::_Const_iterator<(bool)0>>::LLTreeDFSIter()
File: /indra/llcommon/lltreeiterators.h
parent 8b4823ac
No related branches found
No related tags found
No related merge requests found
...@@ -343,20 +343,20 @@ class LLTreeDFSIter: public LLBaseIter<LLTreeDFSIter<NODE, CHILDITER>, NODE> ...@@ -343,20 +343,20 @@ class LLTreeDFSIter: public LLBaseIter<LLTreeDFSIter<NODE, CHILDITER>, NODE>
/// Instantiate an LLTreeDFSIter to start a depth-first walk. Pass /// Instantiate an LLTreeDFSIter to start a depth-first walk. Pass
/// functors to extract the 'child begin' and 'child end' iterators from /// functors to extract the 'child begin' and 'child end' iterators from
/// each node. /// each node.
LLTreeDFSIter(const ptr_type& node, const func_type& beginfunc, const func_type& endfunc): LLTreeDFSIter(const ptr_type& node, const func_type& beginfunc, const func_type& endfunc)
mBeginFunc(beginfunc), : mBeginFunc(beginfunc),
mEndFunc(endfunc), mEndFunc(endfunc),
mSkipChildren(false) mSkipChildren(false)
{ {
// Only push back this node if it's non-NULL! // Only push back this node if it's non-NULL!
if (node) if (node)
mPending.push_back(node); mPending.push_back(node);
} }
/// Instantiate an LLTreeDFSIter to mark the end of the walk /// Instantiate an LLTreeDFSIter to mark the end of the walk
LLTreeDFSIter() {} LLTreeDFSIter() : mSkipChildren(false) {}
/// flags iterator logic to skip traversing children of current node on next increment /// flags iterator logic to skip traversing children of current node on next increment
void skipDescendants(bool skip = true) { mSkipChildren = skip; } void skipDescendants(bool skip = true) { mSkipChildren = skip; }
private: private:
/// leverage boost::iterator_facade /// leverage boost::iterator_facade
...@@ -405,8 +405,8 @@ class LLTreeDFSIter: public LLBaseIter<LLTreeDFSIter<NODE, CHILDITER>, NODE> ...@@ -405,8 +405,8 @@ class LLTreeDFSIter: public LLBaseIter<LLTreeDFSIter<NODE, CHILDITER>, NODE>
func_type mBeginFunc; func_type mBeginFunc;
/// functor to extract end() child iterator /// functor to extract end() child iterator
func_type mEndFunc; func_type mEndFunc;
/// flag which controls traversal of children (skip children of current node if true) /// flag which controls traversal of children (skip children of current node if true)
bool mSkipChildren; bool mSkipChildren;
}; };
/** /**
...@@ -455,17 +455,17 @@ class LLTreeDFSPostIter: public LLBaseIter<LLTreeDFSPostIter<NODE, CHILDITER>, N ...@@ -455,17 +455,17 @@ class LLTreeDFSPostIter: public LLBaseIter<LLTreeDFSPostIter<NODE, CHILDITER>, N
: mBeginFunc(beginfunc), : mBeginFunc(beginfunc),
mEndFunc(endfunc), mEndFunc(endfunc),
mSkipAncestors(false) mSkipAncestors(false)
{ {
if (! node) if (! node)
return; return;
mPending.push_back(typename list_type::value_type(node, false)); mPending.push_back(typename list_type::value_type(node, false));
makeCurrent(); makeCurrent();
} }
/// Instantiate an LLTreeDFSPostIter to mark the end of the walk /// Instantiate an LLTreeDFSPostIter to mark the end of the walk
LLTreeDFSPostIter() : mSkipAncestors(false) {} LLTreeDFSPostIter() : mSkipAncestors(false) {}
/// flags iterator logic to skip traversing ancestors of current node on next increment /// flags iterator logic to skip traversing ancestors of current node on next increment
void skipAncestors(bool skip = true) { mSkipAncestors = skip; } void skipAncestors(bool skip = true) { mSkipAncestors = skip; }
private: private:
/// leverage boost::iterator_facade /// leverage boost::iterator_facade
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment