00215 CUInt128 best;
00216 // Remove any obsolete possible contacts
00217 if (!m_responded.empty())
00218 {
00219 best = m_responded.begin()->first;
00220 ContactMap::iterator it = m_possible.begin();
00221 while (it != m_possible.end())
00222 {
00223 if (it->first < best)
00224 it = m_possible.erase(it);
00225 else
00226 it++;
00227 }
00228 }
The '<' on line 223 should be a '>', shouldn't it?










Sign In
Register


