diff --git a/src/ca/netWriteNotifyIO_IL.h b/src/ca/netWriteNotifyIO_IL.h index 08947b09f..d2bdcc931 100644 --- a/src/ca/netWriteNotifyIO_IL.h +++ b/src/ca/netWriteNotifyIO_IL.h @@ -18,13 +18,13 @@ // // netWriteNotifyIO inline member functions // -inline void * netWriteNotifyIO::operator new (size_t size) +inline void * netWriteNotifyIO::operator new ( size_t size ) { - return netWriteNotifyIO::freeList.allocate (size); + return netWriteNotifyIO::freeList.allocate ( size ); } -inline void netWriteNotifyIO::operator delete (void *pCadaver, size_t size) +inline void netWriteNotifyIO::operator delete ( void *pCadaver, size_t size ) { - netWriteNotifyIO::freeList.release (pCadaver,size); + netWriteNotifyIO::freeList.release ( pCadaver, size ); }