From 98a88d9d74ba387760d1875afbe1d93af7b2dd7c Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Thu, 7 Nov 2002 17:39:19 +0000 Subject: [PATCH] Suppressed HPUX warnings. --- src/ca/syncGroupReadNotify.cpp | 4 ++-- src/ca/syncGroupWriteNotify.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ca/syncGroupReadNotify.cpp b/src/ca/syncGroupReadNotify.cpp index 7984db0f7..9a5be3ebb 100644 --- a/src/ca/syncGroupReadNotify.cpp +++ b/src/ca/syncGroupReadNotify.cpp @@ -92,14 +92,14 @@ void syncGroupReadNotify::show ( unsigned level ) const } } -void * syncGroupReadNotify::operator new ( size_t ) +void * syncGroupReadNotify::operator new ( size_t ) // X aCC 361 { // The HPUX compiler seems to require this even though no code // calls it directly throw std::logic_error ( "why is the compiler calling private operator new" ); } -void syncGroupReadNotify::operator delete ( void * p ) +void syncGroupReadNotify::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/syncGroupWriteNotify.cpp b/src/ca/syncGroupWriteNotify.cpp index 0e8166c34..b3af3bdcb 100644 --- a/src/ca/syncGroupWriteNotify.cpp +++ b/src/ca/syncGroupWriteNotify.cpp @@ -86,14 +86,14 @@ void syncGroupWriteNotify::show ( unsigned level ) const } } -void * syncGroupWriteNotify::operator new ( size_t ) +void * syncGroupWriteNotify::operator new ( size_t ) // X aCC 361 { // The HPUX compiler seems to require this even though no code // calls it directly throw std::logic_error ( "why is the compiler calling private operator new" ); } -void syncGroupWriteNotify::operator delete ( void * p ) +void syncGroupWriteNotify::operator delete ( void * ) { // Visual C++ .net appears to require operator delete if // placement operator delete is defined? I smell a ms rat