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

@@ -17,7 +17,7 @@ CSocketStreamBuffer::~CSocketStreamBuffer()
// do nothing
}
const void* CSocketStreamBuffer::peek(UInt32 n) throw()
const void* CSocketStreamBuffer::peek(UInt32 n)
{
assert(n <= m_size);
@@ -36,7 +36,7 @@ const void* CSocketStreamBuffer::peek(UInt32 n) throw()
return reinterpret_cast<const void*>(head->begin());
}
void CSocketStreamBuffer::pop(UInt32 n) throw()
void CSocketStreamBuffer::pop(UInt32 n)
{
m_size -= n;
@@ -58,7 +58,7 @@ void CSocketStreamBuffer::pop(UInt32 n) throw()
}
void CSocketStreamBuffer::write(
const void* vdata, UInt32 n) throw()
const void* vdata, UInt32 n)
{
assert(vdata != NULL);
@@ -100,7 +100,7 @@ void CSocketStreamBuffer::write(
}
}
UInt32 CSocketStreamBuffer::getSize() const throw()
UInt32 CSocketStreamBuffer::getSize() const
{
return m_size;
}