diff options
Diffstat (limited to 'TAO/tests/Hello/Hello.cpp')
-rw-r--r-- | TAO/tests/Hello/Hello.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Hello/Hello.cpp b/TAO/tests/Hello/Hello.cpp index 70af3ea8a11..65c22a9f8ed 100644 --- a/TAO/tests/Hello/Hello.cpp +++ b/TAO/tests/Hello/Hello.cpp @@ -11,14 +11,14 @@ Hello::Hello (CORBA::ORB_ptr orb) } char * -Hello::get_string (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) +Hello::get_string (void) ACE_THROW_SPEC ((CORBA::SystemException)) { return CORBA::string_dup ("Hello there!"); } void -Hello::shutdown (ACE_ENV_SINGLE_ARG_DECL) +Hello::shutdown (void) ACE_THROW_SPEC ((CORBA::SystemException)) { this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER); |