removed unused paramter tag
This commit is contained in:
@@ -81,7 +81,7 @@ nciu & netWriteNotifyIO::channel () const
|
||||
return this->chan;
|
||||
}
|
||||
|
||||
void netWriteNotifyIO::operator delete ( void * p )
|
||||
void netWriteNotifyIO::operator delete ( void * )
|
||||
{
|
||||
// Visual C++ .net appears to require operator delete if
|
||||
// placement operator delete is defined? I smell a ms rat
|
||||
|
||||
@@ -183,7 +183,7 @@ void oldChannelNotify::writeException ( int status, const char *pContext,
|
||||
__FILE__, __LINE__, *this, type, count, CA_OP_PUT );
|
||||
}
|
||||
|
||||
void oldChannelNotify::operator delete ( void *pCadaver )
|
||||
void oldChannelNotify::operator delete ( void * )
|
||||
{
|
||||
// Visual C++ .net appears to require operator delete if
|
||||
// placement operator delete is defined? I smell a ms rat
|
||||
|
||||
@@ -70,7 +70,7 @@ void oldSubscription::exception (
|
||||
}
|
||||
}
|
||||
|
||||
void oldSubscription::operator delete ( void *pCadaver )
|
||||
void oldSubscription::operator delete ( void * )
|
||||
{
|
||||
// Visual C++ .net appears to require operator delete if
|
||||
// placement operator delete is defined? I smell a ms rat
|
||||
|
||||
@@ -71,7 +71,7 @@ void putCallback::exception (
|
||||
this->chan.getClientCtx().destroyPutCallback ( *this );
|
||||
}
|
||||
|
||||
void putCallback::operator delete ( void * pCadaver )
|
||||
void putCallback::operator delete ( void * )
|
||||
{
|
||||
// Visual C++ .net appears to require operator delete if
|
||||
// placement operator delete is defined? I smell a ms rat
|
||||
|
||||
@@ -249,7 +249,7 @@ repeaterClient::~repeaterClient ()
|
||||
debugPrintf ( ( "Deleted client %u\n", epicsNTOH16 ( this->from.ia.sin_port ) ) );
|
||||
}
|
||||
|
||||
inline void repeaterClient::operator delete ( void *pCadaver )
|
||||
inline void repeaterClient::operator delete ( void * )
|
||||
{
|
||||
// Visual C++ .net appears to require operator delete if
|
||||
// placement operator delete is defined? I smell a ms rat
|
||||
|
||||
Reference in New Issue
Block a user