summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1330_Regression
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1330_Regression')
-rw-r--r--TAO/tests/Bug_1330_Regression/Test_i.cpp4
-rw-r--r--TAO/tests/Bug_1330_Regression/Test_i.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/Bug_1330_Regression/Test_i.cpp b/TAO/tests/Bug_1330_Regression/Test_i.cpp
index f4c287557a5..6abc12a38d4 100644
--- a/TAO/tests/Bug_1330_Regression/Test_i.cpp
+++ b/TAO/tests/Bug_1330_Regression/Test_i.cpp
@@ -10,12 +10,12 @@ Test_i::~Test_i()
}
void
-Test_i::test_method (void)
+Test_i::test_method ()
{
}
void
-Test_i::shutdown (void)
+Test_i::shutdown ()
{
this->orb_->shutdown (false);
}
diff --git a/TAO/tests/Bug_1330_Regression/Test_i.h b/TAO/tests/Bug_1330_Regression/Test_i.h
index 0ae7dfeface..e2b6c7e28e5 100644
--- a/TAO/tests/Bug_1330_Regression/Test_i.h
+++ b/TAO/tests/Bug_1330_Regression/Test_i.h
@@ -12,12 +12,12 @@ public:
Test_i (CORBA::ORB_ptr orb);
/// Destructor
- ~Test_i (void);
+ ~Test_i ();
/// A method
- virtual void test_method(void);
+ virtual void test_method();
- virtual void shutdown (void);
+ virtual void shutdown ();
private:
/// Use an ORB reference to convert strings to objects and shutdown