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
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,7 @@ Aleric Inglewood
VWR-10837
VWR-12691
VWR-12984
VWR-13040
VWR-13996
VWR-14426
VWR-24247
......
......@@ -235,7 +235,7 @@ class LLObjectSelection : public LLRefCount
{
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_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.
Finish editing this message first!
Please register or to comment