summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.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 /TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h b/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
index 53cef409396..30f78bed6e1 100644
--- a/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
+++ b/TAO/orbsvcs/tests/ImplRepo/RestartIMR/test_i.h
@@ -13,12 +13,12 @@ class Test_Dummy_i
{
public:
// Constructor
- Test_Dummy_i (void);
+ Test_Dummy_i ();
// Destructor
- virtual ~Test_Dummy_i (void);
+ virtual ~Test_Dummy_i ();
- virtual char * getMessage (void);
+ virtual char * getMessage ();
};
class Test_Time_i
@@ -26,14 +26,14 @@ class Test_Time_i
{
public:
// Constructor
- Test_Time_i (void);
+ Test_Time_i ();
// Destructor
- virtual ~Test_Time_i (void);
+ virtual ~Test_Time_i ();
- virtual ::CORBA::Long current_time (void);
+ virtual ::CORBA::Long current_time ();
- virtual void shutdown (void);
+ virtual void shutdown ();
};