From 48ba6a3f578544cb0d16b10b85e082d3115ffd0f Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 29 Jun 2000 14:36:49 +0000 Subject: [PATCH] cosmetic --- src/ca/netWriteNotifyIO_IL.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 ); }