diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-17 10:52:29 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-17 10:52:29 +0100 |
commit | 104d9f8a30c479fe661883b295f120ab035645d9 (patch) | |
tree | aa39aaa576d8ce2e1666df7a750d77df1a33232e /ACE/ace/SSL/SSL_Asynch_Stream.h | |
parent | 2d22ad2099d46d44fa05778313a8d4c9c4a4eba3 (diff) | |
download | ATCD-104d9f8a30c479fe661883b295f120ab035645d9.tar.gz |
Removed redundant void
Diffstat (limited to 'ACE/ace/SSL/SSL_Asynch_Stream.h')
-rw-r--r-- | ACE/ace/SSL/SSL_Asynch_Stream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/SSL/SSL_Asynch_Stream.h b/ACE/ace/SSL/SSL_Asynch_Stream.h index f6984515214..65a6d5d6b83 100644 --- a/ACE/ace/SSL/SSL_Asynch_Stream.h +++ b/ACE/ace/SSL/SSL_Asynch_Stream.h @@ -184,7 +184,7 @@ public: int close (void); /// Return a pointer to the underlying SSL structure. - SSL *ssl (void) const; + SSL *ssl () const; /** * Initializes the factory with information which will be used with @@ -277,7 +277,7 @@ public: protected: /// Virtual from ACE_Asynch_Operation. Since this class is essentially an /// implementation class, simply return 0. - virtual ACE_Asynch_Operation_Impl *implementation (void) const { return 0; } + virtual ACE_Asynch_Operation_Impl *implementation () const { return 0; } /// virtual from ACE_Handler |