dont return void from a void function (some compilers dont support this)

This commit is contained in:
Jeff Hill
2002-12-10 16:59:36 +00:00
parent 02de364dff
commit 416dd6bfda

View File

@@ -1581,7 +1581,7 @@ void *cacComBufMemoryManager::allocate ( size_t size ) epicsThrows (( std::bad_a
void cacComBufMemoryManager::release ( void * pCadaver ) epicsThrows (())
{
return this->freeList.release ( pCadaver );
this->freeList.release ( pCadaver );
}
void cac::pvMultiplyDefinedNotify ( msgForMultiplyDefinedPV & mfmdpv,