forked from organicmaps/organicmaps
fixed bug in m4::Tree::Erase
This commit is contained in:
parent
d2c12d6eb3
commit
6e40c5c9d6
1 changed files with 5 additions and 1 deletions
|
@ -154,9 +154,13 @@ namespace m4
|
|||
|
||||
void Erase(T const & obj)
|
||||
{
|
||||
vector<value_t> v;
|
||||
for (typename tree_t::const_iterator i = m_tree.begin(); i != m_tree.end(); ++i)
|
||||
if ((*i).m_val == obj)
|
||||
m_tree.erase(*i);
|
||||
v.push_back(*i);
|
||||
|
||||
for (unsigned i = 0; i < v.size(); ++i)
|
||||
m_tree.erase(v[i]);
|
||||
}
|
||||
|
||||
template <class TCompare>
|
||||
|
|
Loading…
Add table
Reference in a new issue