--- gvpe/src/iom.h 2004/04/02 14:42:45 1.19 +++ gvpe/src/iom.h 2004/05/10 18:57:08 1.20 @@ -72,10 +72,10 @@ void erase_unordered (unsigned int pos) { - watcher *w = (*this)[size () - 1]; - pop_back (); + watcher *w = (*this)[this->size () - 1]; + this->pop_back (); - if (size ()) + if (this->size ()) if ((*this)[pos] = w) w->active = pos + 1; }