use epics_throws macro

This commit is contained in:
Jeff Hill
2002-10-25 00:11:12 +00:00
parent 3e884afdff
commit 2011c3c7ba
26 changed files with 243 additions and 244 deletions

View File

@@ -1587,12 +1587,12 @@ void cac::initiateConnect ( nciu & chan )
this->pudpiiu->installChannel ( chan );
}
void *cacComBufMemoryManager::allocate ( size_t size ) throw ( std::bad_alloc )
void *cacComBufMemoryManager::allocate ( size_t size ) epics_throws (( std::bad_alloc ))
{
return this->freeList.allocate ( size );
}
void cacComBufMemoryManager::release ( void * pCadaver ) throw ()
void cacComBufMemoryManager::release ( void * pCadaver ) epics_throws (())
{
return this->freeList.release ( pCadaver );
}