I'm trying to walk through a list. Here are some declarations:
list<CG1_Edge*> ActiveEdges;
list<CG1_Edge*>::iterator ActiveEdgeIterator;
Sometimes, this code segfaults on line 2:
for (this->ActiveEdgeIterator = this->ActiveEdges.begin(); this->ActiveEdgeIterator != this->ActiveEdges.end(); ++this->ActiveEdgeIterator) {
CG1_Edge* currentEdge = *this->ActiveEdgeIterator;
if (currentEdge->y_up < y)
this->ActiveEdges.erase(this->ActiveEdgeIterator);
}
Are there any common reasons why this might result in a segfault?
forloop withstd::remove_ifand container resize. Algorithms from the STL hide many iterator-details and make code more readable (when I see aforloop I only know that this is some kind of iteration and when I see an STL algorithm I know exactly what it is). – Begemoth Apr 3 '11 at 10:00list::erasedoes not invalidate the iterators, except those positioned at the erased element. – Mat Apr 3 '11 at 10:57