On 23/11/2014 16:59, K' Dash wrote:
> can you guys give me your email address so I can share you my files. not more just 2 files.
donno all the code, but gussing: try this, does it work:
void GUID_LMS_application::RemoveEntry (GUID_address GUIDaddress)
{
for (std::vector<Entry>::iterator i=m_listentry.begin();i!=m_listentry.end ();i++)
{
if (GUIDaddress == i->GetGUIDaddress())
{
//std::cout<<"AAAAAAAAAAAAAAAAAAAAAAAAAAAAA\n";
m_listentry.erase(i);
break;
}
}
}
what it says now (hope i did not leave errors)?