I have doubly linked list: http://dl.dropbox.com/u/16185759/list.h
and method in other class:
List<int> get_vertices()
{
Element<Edge*> *curr = edges->head;
List<int> vertices;
int v1, v2;
while (curr != 0)
{
v1 = curr->data->v1;
v2 = curr->data->v2;
if (vertices.has(v1) == false)
{
vertices.insert(v1);
}
if (vertices.has(v2) == false)
{
vertices.insert(v1);
}
curr = curr->next;
}
return vertices;
}
method has not called according to debug.
compiler ignores it, substituting the value false, if you remove at the end return false, then everything works.
What to do? thanks in advance

headis actually0... ? – Xeo Nov 18 '11 at 19:08dataisn't floating point by any chance, is it? – Mark Ransom Nov 18 '11 at 19:16