summaryrefslogtreecommitdiff
path: root/ACE/protocols/tests/HTBP
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/protocols/tests/HTBP')
-rw-r--r--ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp2
-rw-r--r--ACE/protocols/tests/HTBP/Reactor_Tests/test_config.h16
2 files changed, 9 insertions, 9 deletions
diff --git a/ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp b/ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp
index d2bc3bb661a..5f46b6f30bc 100644
--- a/ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp
+++ b/ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp
@@ -54,7 +54,7 @@ class Accept_Handler : public ACE_Event_Handler
{
public:
Accept_Handler (ACE_SOCK_Acceptor& a);
- virtual ~Accept_Handler (void);
+ virtual ~Accept_Handler ();
virtual int handle_input (ACE_HANDLE );
private:
ACE_SOCK_Acceptor& acceptor_;
diff --git a/ACE/protocols/tests/HTBP/Reactor_Tests/test_config.h b/ACE/protocols/tests/HTBP/Reactor_Tests/test_config.h
index 67e46f054e8..6f3c476fb71 100644
--- a/ACE/protocols/tests/HTBP/Reactor_Tests/test_config.h
+++ b/ACE/protocols/tests/HTBP/Reactor_Tests/test_config.h
@@ -153,17 +153,17 @@ const size_t ACE_MAX_THREADS = 4;
class ACE_Test_Output
{
public:
- ACE_Test_Output (void);
- ~ACE_Test_Output (void);
+ ACE_Test_Output ();
+ ~ACE_Test_Output ();
int set_output (const ACE_TCHAR *filename, int append = 0);
- OFSTREAM *output_file (void);
- void close (void);
+ OFSTREAM *output_file ();
+ void close ();
private:
OFSTREAM *output_file_;
};
-inline ACE_Test_Output::ACE_Test_Output (void)
+inline ACE_Test_Output::ACE_Test_Output ()
: output_file_ (0)
{
#if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
@@ -171,7 +171,7 @@ inline ACE_Test_Output::ACE_Test_Output (void)
#endif /* ACE_LACKS_IOSTREAM_TOTALLY */
}
-inline ACE_Test_Output::~ACE_Test_Output (void)
+inline ACE_Test_Output::~ACE_Test_Output ()
{
#if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
ACE_LOG_MSG->msg_ostream (&cerr);
@@ -186,7 +186,7 @@ inline ACE_Test_Output::~ACE_Test_Output (void)
}
inline OFSTREAM *
-ACE_Test_Output::output_file (void)
+ACE_Test_Output::output_file ()
{
return this->output_file_;
}
@@ -268,7 +268,7 @@ ACE_Test_Output::set_output (const ACE_TCHAR *filename, int append)
}
inline void
-ACE_Test_Output::close (void)
+ACE_Test_Output::close ()
{
#if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
this->output_file_->flush ();