diff options
Diffstat (limited to 'TAO/tests/DSI_AMI_Gateway/test_i.cpp')
-rw-r--r-- | TAO/tests/DSI_AMI_Gateway/test_i.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/DSI_AMI_Gateway/test_i.cpp b/TAO/tests/DSI_AMI_Gateway/test_i.cpp index b2a50ab519d..b8493c6cc96 100644 --- a/TAO/tests/DSI_AMI_Gateway/test_i.cpp +++ b/TAO/tests/DSI_AMI_Gateway/test_i.cpp @@ -33,25 +33,25 @@ Simple_Server_i::test_method (CORBA::Long x, } void -Simple_Server_i::raise_user_exception (void) +Simple_Server_i::raise_user_exception () { throw test_exception (33, "reactor meltdown", "kaput"); } void -Simple_Server_i::raise_system_exception (void) +Simple_Server_i::raise_system_exception () { throw CORBA::NO_PERMISSION (); } void -Simple_Server_i::shutdown (void) +Simple_Server_i::shutdown () { this->orb_->shutdown (false); } CORBA::Long -Simple_Server_i::test_val (void) +Simple_Server_i::test_val () { return vlong_; } |