summaryrefslogtreecommitdiff
path: root/ACE/ace/IOStream_T.h
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
commit3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch)
tree379c29e09bf55597fe6740cd163478cd1204a181 /ACE/ace/IOStream_T.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'ACE/ace/IOStream_T.h')
-rw-r--r--ACE/ace/IOStream_T.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/IOStream_T.h b/ACE/ace/IOStream_T.h
index 49ddbf0ad09..ffa6fafffb4 100644
--- a/ACE/ace/IOStream_T.h
+++ b/ACE/ace/IOStream_T.h
@@ -68,7 +68,7 @@ public:
ACE_Time_Value *tv = 0);
protected:
- virtual ACE_HANDLE get_handle (void);
+ virtual ACE_HANDLE get_handle ();
/// This will be our ACE_SOCK_Stream or similar object.
STREAM *peer_;
@@ -119,11 +119,11 @@ public:
/// We have to get rid of the <streambuf_> ourselves since we gave it
/// to the <iostream> base class;
- virtual ~ACE_IOStream (void);
+ virtual ~ACE_IOStream ();
/// The only ambiguity in the multiple inheritance is the <close>
/// function.
- virtual int close (void);
+ virtual int close ();
/**
* Returns 1 if we're at the end of the <STREAM>, i.e., if the
@@ -184,7 +184,7 @@ public:
return (0);
}
virtual void isfx (void) { return; }
- virtual int opfx (void)
+ virtual int opfx ()
{
if (good () && tie () != 0)
tie ()->flush ();
@@ -243,7 +243,7 @@ template <class STREAM>
class ACE_SOCK_Dgram_SC : public STREAM
{
public:
- ACE_SOCK_Dgram_SC (void);
+ ACE_SOCK_Dgram_SC ();
ACE_SOCK_Dgram_SC (STREAM &source,
ACE_INET_Addr &dest);
ssize_t send_n (char *buf, ssize_t len);