diff options
Diffstat (limited to 'ACE/ace/FIFO_Recv.h')
-rw-r--r-- | ACE/ace/FIFO_Recv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/FIFO_Recv.h b/ACE/ace/FIFO_Recv.h index 796aadeca0d..c34bd2180ad 100644 --- a/ACE/ace/FIFO_Recv.h +++ b/ACE/ace/FIFO_Recv.h @@ -45,7 +45,7 @@ public: /// aren't any writers at the moment! //@{ /// Default constructor. - ACE_FIFO_Recv (void); + ACE_FIFO_Recv (); /// Open up a bytestream named pipe for reading. ACE_FIFO_Recv (const ACE_TCHAR *rendezvous, @@ -63,7 +63,7 @@ public: //@} /// Close down the fifo. - int close (void); + int close (); /// Recv @a buf of up to @a len bytes. ssize_t recv (void *buf, size_t len); |