summaryrefslogtreecommitdiff
path: root/ACE/tests/test_config.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/tests/test_config.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'ACE/tests/test_config.h')
-rw-r--r--ACE/tests/test_config.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/ACE/tests/test_config.h b/ACE/tests/test_config.h
index e606f048a21..f9e845d5ac7 100644
--- a/ACE/tests/test_config.h
+++ b/ACE/tests/test_config.h
@@ -175,15 +175,15 @@ size_t const ACE_MAX_THREADS = 4;
class Test_Output_Export ACE_Test_Output
{
public:
- ACE_Test_Output (void);
- ~ACE_Test_Output (void);
- static ACE_Test_Output *instance (void);
+ ACE_Test_Output ();
+ ~ACE_Test_Output ();
+ static ACE_Test_Output *instance ();
int set_output (const ACE_TCHAR *filename, int append = 0);
- OFSTREAM *output_file (void);
- void close (void);
- const ACE_TCHAR *dll_name (void);
- const ACE_TCHAR *name (void);
- static void close_singleton (void);
+ OFSTREAM *output_file ();
+ void close ();
+ const ACE_TCHAR *dll_name ();
+ const ACE_TCHAR *name ();
+ static void close_singleton ();
private:
static ACE_Test_Output *instance_;