summaryrefslogtreecommitdiff
path: root/TAO/tests/POA/Etherealization/Etherealization.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/POA/Etherealization/Etherealization.cpp')
-rw-r--r--TAO/tests/POA/Etherealization/Etherealization.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/TAO/tests/POA/Etherealization/Etherealization.cpp b/TAO/tests/POA/Etherealization/Etherealization.cpp
index 37de8d7661e..f1a9f39901e 100644
--- a/TAO/tests/POA/Etherealization/Etherealization.cpp
+++ b/TAO/tests/POA/Etherealization/Etherealization.cpp
@@ -18,11 +18,11 @@
class test_i : public POA_test
{
public:
- void method ( /**/)
+ void method ()
{
}
- ~test_i (void)
+ ~test_i ()
{
ACE_DEBUG ((LM_DEBUG, "~test_i called\n"));
}
@@ -32,11 +32,11 @@ class test_i_with_reference_counting :
public virtual POA_test
{
public:
- void method (void)
+ void method ()
{
}
- ~test_i_with_reference_counting (void)
+ ~test_i_with_reference_counting ()
{
ACE_DEBUG ((LM_DEBUG, "~test_i_with_reference_counting called\n"));
}
@@ -100,7 +100,6 @@ Servant_Activator::etherealize (const PortableServer::ObjectId &id,
int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
-
try
{
// Initialize the ORB first.