fixed failure to return a value from Remove

master
Tycho 2014-01-03 08:34:41 -08:00
parent 6f3c5b806e
commit 0e8bb3bf41
1 changed files with 1 additions and 1 deletions

View File

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