From dda1e0e2aaeae3a575dc3807d9afadcd0deaecc1 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 29 Oct 2002 19:00:46 +0000 Subject: [PATCH] removed unused paramter tag --- src/ca/netWriteNotifyIO.cpp | 2 +- src/ca/oldChannelNotify.cpp | 2 +- src/ca/oldSubscription.cpp | 2 +- src/ca/putCallback.cpp | 2 +- src/ca/repeater.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ca/netWriteNotifyIO.cpp b/src/ca/netWriteNotifyIO.cpp index dd5a692fb..53744eebd 100644 --- a/src/ca/netWriteNotifyIO.cpp +++ b/src/ca/netWriteNotifyIO.cpp @@ -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 diff --git a/src/ca/oldChannelNotify.cpp b/src/ca/oldChannelNotify.cpp index 5030e1656..f4d69d049 100644 --- a/src/ca/oldChannelNotify.cpp +++ b/src/ca/oldChannelNotify.cpp @@ -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 diff --git a/src/ca/oldSubscription.cpp b/src/ca/oldSubscription.cpp index 444325541..e5de6fa0f 100644 --- a/src/ca/oldSubscription.cpp +++ b/src/ca/oldSubscription.cpp @@ -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 diff --git a/src/ca/putCallback.cpp b/src/ca/putCallback.cpp index 45d577a9b..0c755c269 100644 --- a/src/ca/putCallback.cpp +++ b/src/ca/putCallback.cpp @@ -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 diff --git a/src/ca/repeater.cpp b/src/ca/repeater.cpp index 912a97994..5750a6366 100644 --- a/src/ca/repeater.cpp +++ b/src/ca/repeater.cpp @@ -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