summaryrefslogtreecommitdiff
path: root/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
commit104d9f8a30c479fe661883b295f120ab035645d9 (patch)
treeaa39aaa576d8ce2e1666df7a750d77df1a33232e /ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp
parent2d22ad2099d46d44fa05778313a8d4c9c4a4eba3 (diff)
downloadATCD-104d9f8a30c479fe661883b295f120ab035645d9.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp')
-rw-r--r--ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp b/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp
index 95c2d891a67..4a1b8667898 100644
--- a/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp
+++ b/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp
@@ -68,13 +68,13 @@ Options::init (void)
}
size_t
-Options::message_len (void) const
+Options::message_len () const
{
return this->message_len_;
}
const void *
-Options::message_buf (void) const
+Options::message_buf () const
{
return this->message_buf_;
}
@@ -145,25 +145,25 @@ Options::parse_args (int argc, ACE_TCHAR *argv[])
}
u_short
-Options::port (void) const
+Options::port () const
{
return this->port_;
}
const ACE_TCHAR *
-Options::host (void) const
+Options::host () const
{
return this->host_;
}
const char *
-Options::quit_string (void) const
+Options::quit_string () const
{
return this->quit_string_;
}
const ACE_Time_Value &
-Options::sleep_time (void) const
+Options::sleep_time () const
{
return this->sleep_time_;
}