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

@@ -15,13 +15,13 @@ COutputPacketStream::~COutputPacketStream()
// do nothing
}
void COutputPacketStream::close() throw(XIO)
void COutputPacketStream::close()
{
getStream()->close();
}
UInt32 COutputPacketStream::write(
const void* buffer, UInt32 count) throw(XIO)
const void* buffer, UInt32 count)
{
// write the length of the payload
UInt8 length[4];
@@ -49,7 +49,7 @@ UInt32 COutputPacketStream::write(
return count;
}
void COutputPacketStream::flush() throw(XIO)
void COutputPacketStream::flush()
{
getStream()->flush();
}