More HP aCC warnings fixed
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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 )
|
||||
|
||||
Reference in New Issue
Block a user