summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS2/HTTPU/http_response.cpp
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/apps/JAWS2/HTTPU/http_response.cpp
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'ACE/apps/JAWS2/HTTPU/http_response.cpp')
-rw-r--r--ACE/apps/JAWS2/HTTPU/http_response.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/apps/JAWS2/HTTPU/http_response.cpp b/ACE/apps/JAWS2/HTTPU/http_response.cpp
index 5599ff28613..3cf450c0b9b 100644
--- a/ACE/apps/JAWS2/HTTPU/http_response.cpp
+++ b/ACE/apps/JAWS2/HTTPU/http_response.cpp
@@ -1,7 +1,7 @@
#include "HTTPU/http_response.h"
void
-HTTP_Response::parse_line (void)
+HTTP_Response::parse_line ()
{
this->response_.init (this->line ());
if (this->response_.error () != Parse_HTTP_Response::HTTPU_OK)
@@ -9,7 +9,7 @@ HTTP_Response::parse_line (void)
}
int
-HTTP_Response::espouse_line (void)
+HTTP_Response::espouse_line ()
{
int count;
int status;
@@ -35,7 +35,7 @@ HTTP_Response::espouse_line (void)
}
void
-HTTP_Response::dump (void)
+HTTP_Response::dump ()
{
ACE_DEBUG ((LM_DEBUG, "===== BEGIN entera_HTTP_Response::dump =====\n"));
HTTP_Base::dump ();