1
0

fixed failure to return a value from Remove

This commit is contained in:
Tycho 2014-01-03 08:34:41 -08:00
parent 6f3c5b806e
commit 0e8bb3bf41

View File

@ -134,8 +134,8 @@ public:
bool Remove(ItemType item)
{
cCSLock Lock(m_CS);
m_contents.remove(item);
m_evtRemoved.Set();
return m_contents.remove(item);
}
private: