diff options
author | Knut Petter Svendsen <knut@altuma.no> | 2022-09-13 22:57:39 +0200 |
---|---|---|
committer | Knut Petter Svendsen <knut@altuma.no> | 2022-09-13 22:57:39 +0200 |
commit | 3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch) | |
tree | 379c29e09bf55597fe6740cd163478cd1204a181 /TAO/tests/Bug_3479_Regression | |
parent | fe03724176dcfd20e0f9a6e493198469242be6b6 (diff) | |
download | ATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz |
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/tests/Bug_3479_Regression')
-rw-r--r-- | TAO/tests/Bug_3479_Regression/Hello.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/Bug_3479_Regression/Hello.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Bug_3479_Regression/Hello.cpp b/TAO/tests/Bug_3479_Regression/Hello.cpp index 674e81b64e0..06899bdaadc 100644 --- a/TAO/tests/Bug_3479_Regression/Hello.cpp +++ b/TAO/tests/Bug_3479_Regression/Hello.cpp @@ -12,7 +12,7 @@ Hello::get_string (CORBA::String_out string_out) } void -Hello::shutdown (void) +Hello::shutdown () { this->orb_->shutdown (false); } diff --git a/TAO/tests/Bug_3479_Regression/Hello.h b/TAO/tests/Bug_3479_Regression/Hello.h index bdce42f931d..f92e1ee2fb6 100644 --- a/TAO/tests/Bug_3479_Regression/Hello.h +++ b/TAO/tests/Bug_3479_Regression/Hello.h @@ -16,7 +16,7 @@ public: // = The skeleton methods virtual void get_string (CORBA::String_out string_out); - virtual void shutdown (void); + virtual void shutdown (); private: /// Use an ORB reference to convert strings to objects and shutdown |