diff options
Diffstat (limited to 'TAO/tests/Param_Test/ub_wstring.cpp')
-rw-r--r-- | TAO/tests/Param_Test/ub_wstring.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/TAO/tests/Param_Test/ub_wstring.cpp b/TAO/tests/Param_Test/ub_wstring.cpp index 2ac6eb0a5f7..a7cb2661178 100644 --- a/TAO/tests/Param_Test/ub_wstring.cpp +++ b/TAO/tests/Param_Test/ub_wstring.cpp @@ -18,7 +18,7 @@ // Test_Unbounded_WString // ************************************************************************ -Test_Unbounded_WString::Test_Unbounded_WString (void) +Test_Unbounded_WString::Test_Unbounded_WString () : opname_ (CORBA::string_dup ("test_unbounded_wstring")), in_ (0), inout_ (0), @@ -27,7 +27,7 @@ Test_Unbounded_WString::Test_Unbounded_WString (void) { } -Test_Unbounded_WString::~Test_Unbounded_WString (void) +Test_Unbounded_WString::~Test_Unbounded_WString () { CORBA::string_free (this->opname_); CORBA::wstring_free (this->in_); @@ -97,7 +97,7 @@ Test_Unbounded_WString::init_parameters (Param_Test_ptr) } int -Test_Unbounded_WString::reset_parameters (void) +Test_Unbounded_WString::reset_parameters () { // release any previously occupied values CORBA::wstring_free (this->inout_); @@ -127,13 +127,12 @@ Test_Unbounded_WString::run_sii_test (Param_Test_ptr objref) catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Test_Unbounded_WString::run_sii_test\n"); - } return -1; } CORBA::Boolean -Test_Unbounded_WString::check_validity (void) +Test_Unbounded_WString::check_validity () { CORBA::ULong len = ACE_OS::wslen (this->in_); @@ -156,6 +155,6 @@ Test_Unbounded_WString::check_validity (CORBA::Request_ptr ) } void -Test_Unbounded_WString::print_values (void) +Test_Unbounded_WString::print_values () { } |