removed exception specifications. thread exceptions weren't

being listed and they'd have to be added to every one.  just
doesn't seem worth the trouble.
This commit is contained in:
crs
2001-10-14 16:58:01 +00:00
parent c6ed114410
commit 6aba3a6f57
50 changed files with 269 additions and 272 deletions

View File

@@ -6,17 +6,17 @@
// CLock
//
CLock::CLock(const CMutex* mutex) throw() : m_mutex(mutex)
CLock::CLock(const CMutex* mutex) : m_mutex(mutex)
{
m_mutex->lock();
}
CLock::CLock(const CCondVarBase* cv) throw() : m_mutex(cv->getMutex())
CLock::CLock(const CCondVarBase* cv) : m_mutex(cv->getMutex())
{
m_mutex->lock();
}
CLock::~CLock() throw()
CLock::~CLock()
{
m_mutex->unlock();
}