More HP aCC warnings fixed

This commit is contained in:
Ralph Lange
2002-10-09 09:12:25 +00:00
parent c0aa7861e6
commit 7bf43f6dcc
2 changed files with 5 additions and 4 deletions

View File

@@ -208,7 +208,7 @@ inline netSubscription * netSubscription::factory (
nciu &chan, unsigned type, arrayElementCount count,
unsigned mask, cacStateNotify &notify )
{
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 &notify )
{
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 &notify )
{
return new ( freeList ) netWriteNotifyIO ( chan, notify );
return new ( freeList ) netWriteNotifyIO ( chan, notify ); // X aCC 930
}
inline void * netWriteNotifyIO::operator new ( size_t size,

View File

@@ -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 )