summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3766_Regression
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/tests/Bug_3766_Regression
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/tests/Bug_3766_Regression')
-rw-r--r--TAO/tests/Bug_3766_Regression/TestI.cpp4
-rw-r--r--TAO/tests/Bug_3766_Regression/TestI.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Bug_3766_Regression/TestI.cpp b/TAO/tests/Bug_3766_Regression/TestI.cpp
index 181c2886086..e732d7d0038 100644
--- a/TAO/tests/Bug_3766_Regression/TestI.cpp
+++ b/TAO/tests/Bug_3766_Regression/TestI.cpp
@@ -36,7 +36,7 @@ Test_i::Test_i (CORBA::ORB_ptr o)
}
// Implementation skeleton destructor
-Test_i::~Test_i (void)
+Test_i::~Test_i ()
{
}
@@ -60,7 +60,7 @@ void Test_i::do_something_VariableLength (
my_info->d = ::CORBA::string_dup("Howdy");
}
-void Test_i::shutdown (void)
+void Test_i::shutdown ()
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("\nThe server is shutting down\n")));
diff --git a/TAO/tests/Bug_3766_Regression/TestI.h b/TAO/tests/Bug_3766_Regression/TestI.h
index b731c02c884..c398592e21c 100644
--- a/TAO/tests/Bug_3766_Regression/TestI.h
+++ b/TAO/tests/Bug_3766_Regression/TestI.h
@@ -44,7 +44,7 @@ public:
Test_i (CORBA::ORB_ptr o);
// Destructor
- virtual ~Test_i (void);
+ virtual ~Test_i ();
virtual
void do_something_FixedLength (
@@ -54,7 +54,7 @@ public:
void do_something_VariableLength (
::VariableLengthInfo_out my_info);
- virtual void shutdown (void);
+ virtual void shutdown ();
private:
CORBA::ORB_var orb_;