From 7bf43f6dcc363f2ce75a25dbd433b302342ec58e Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Wed, 9 Oct 2002 09:12:25 +0000 Subject: [PATCH] More HP aCC warnings fixed --- src/ca/netIO.h | 6 +++--- src/ca/syncGroupReadNotify.cpp | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ca/netIO.h b/src/ca/netIO.h index 5f9e110d7..392b12e39 100644 --- a/src/ca/netIO.h +++ b/src/ca/netIO.h @@ -208,7 +208,7 @@ inline netSubscription * netSubscription::factory ( nciu &chan, unsigned type, arrayElementCount count, unsigned mask, cacStateNotify ¬ify ) { - return new ( freeList ) netSubscription ( chan, type, + return new ( freeList ) netSubscription ( chan, type, // X aCC 930 count, mask, notify ); } @@ -237,7 +237,7 @@ inline netReadNotifyIO * netReadNotifyIO::factory ( tsFreeList < class netReadNotifyIO, 1024, epicsMutexNOOP > &freeList, nciu &chan, cacReadNotify ¬ify ) { - return new ( freeList ) netReadNotifyIO ( chan, notify ); + return new ( freeList ) netReadNotifyIO ( chan, notify ); // X aCC 930 } inline void * netReadNotifyIO::operator new ( size_t size, @@ -268,7 +268,7 @@ inline netWriteNotifyIO * netWriteNotifyIO::factory ( tsFreeList < class netWriteNotifyIO, 1024, epicsMutexNOOP > &freeList, nciu &chan, cacWriteNotify ¬ify ) { - return new ( freeList ) netWriteNotifyIO ( chan, notify ); + return new ( freeList ) netWriteNotifyIO ( chan, notify ); // X aCC 930 } inline void * netWriteNotifyIO::operator new ( size_t size, diff --git a/src/ca/syncGroupReadNotify.cpp b/src/ca/syncGroupReadNotify.cpp index 54889a4a0..e8a83f6c7 100644 --- a/src/ca/syncGroupReadNotify.cpp +++ b/src/ca/syncGroupReadNotify.cpp @@ -39,7 +39,8 @@ syncGroupReadNotify * syncGroupReadNotify::factory ( tsFreeList < class syncGroupReadNotify, 128, epicsMutexNOOP > &freeList, struct CASG &sg, chid chan, void *pValueIn ) { - return new ( freeList ) syncGroupReadNotify ( sg, chan, pValueIn); + return new ( freeList ) // X aCC 930 + syncGroupReadNotify ( sg, chan, pValueIn ); } void syncGroupReadNotify::destroy ( casgRecycle &recycle )