Skip to content
Snippets Groups Projects
Commit 80d7432c authored by Aleric Inglewood's avatar Aleric Inglewood
Browse files

VWR-13040 - clean up LLObjectSelection iterator

parent cf287644
Branches
Tags
No related merge requests found
...@@ -72,6 +72,7 @@ Aleric Inglewood ...@@ -72,6 +72,7 @@ Aleric Inglewood
VWR-10837 VWR-10837
VWR-12691 VWR-12691
VWR-12984 VWR-12984
VWR-13040
VWR-13996 VWR-13996
VWR-14426 VWR-14426
VWR-24247 VWR-24247
......
...@@ -235,7 +235,7 @@ class LLObjectSelection : public LLRefCount ...@@ -235,7 +235,7 @@ class LLObjectSelection : public LLRefCount
{ {
bool operator()(LLSelectNode* node); bool operator()(LLSelectNode* node);
}; };
typedef boost::filter_iterator<is_root, list_t::iterator > valid_root_iterator; typedef boost::filter_iterator<is_valid_root, list_t::iterator > valid_root_iterator;
valid_root_iterator valid_root_begin() { return valid_root_iterator(mList.begin(), mList.end()); } valid_root_iterator valid_root_begin() { return valid_root_iterator(mList.begin(), mList.end()); }
valid_root_iterator valid_root_end() { return valid_root_iterator(mList.end(), mList.end()); } valid_root_iterator valid_root_end() { return valid_root_iterator(mList.end(), mList.end()); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment