diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-03-17 14:28:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 14:28:21 +0100 |
commit | adc3b3184957de087fb84f045a7e4ba7287e1270 (patch) | |
tree | 90611e27c86a77ea8ea4bcabdf9f39819e6cbdc5 /TAO/tests/ORB_Local_Config/Two_DLL_ORB | |
parent | 5f9ccb42bc00bd6e0eee5907f5046c10ea4404eb (diff) | |
parent | 104d9f8a30c479fe661883b295f120ab035645d9 (diff) | |
download | ATCD-adc3b3184957de087fb84f045a7e4ba7287e1270.tar.gz |
Merge pull request #1457 from jwillemsen/jwi-redundantvoid
Removed redundant void
Diffstat (limited to 'TAO/tests/ORB_Local_Config/Two_DLL_ORB')
-rw-r--r-- | TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h | 6 | ||||
-rw-r--r-- | TAO/tests/ORB_Local_Config/Two_DLL_ORB/client.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/ORB_Local_Config/Two_DLL_ORB/server.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h b/TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h index 4adee3cc6d7..ec627e5e18e 100644 --- a/TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h +++ b/TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h @@ -33,7 +33,7 @@ public: virtual ~Abstract_Worker (void); virtual int test_main (int argc, ACE_TCHAR *argv[]) = 0; - virtual const ACE_TCHAR * kind (void) const = 0; + virtual const ACE_TCHAR * kind () const = 0; protected: ACE_TString ior_file_; }; @@ -47,7 +47,7 @@ public: Server_Worker (); ~Server_Worker (void); int test_main (int argc, ACE_TCHAR *argv[]); - const ACE_TCHAR * kind (void) const; + const ACE_TCHAR * kind () const; private: int parse_args (int argc, ACE_TCHAR *argv[]); @@ -62,7 +62,7 @@ public: Client_Worker (); ~Client_Worker (void); int test_main (int argc, ACE_TCHAR *argv[]); - const ACE_TCHAR * kind (void) const; + const ACE_TCHAR * kind () const; private: int parse_args (int argc, ACE_TCHAR *argv[]); diff --git a/TAO/tests/ORB_Local_Config/Two_DLL_ORB/client.cpp b/TAO/tests/ORB_Local_Config/Two_DLL_ORB/client.cpp index f03731b60ee..db65b94520a 100644 --- a/TAO/tests/ORB_Local_Config/Two_DLL_ORB/client.cpp +++ b/TAO/tests/ORB_Local_Config/Two_DLL_ORB/client.cpp @@ -12,7 +12,7 @@ Client_Worker::Client_Worker () } const ACE_TCHAR * -Client_Worker::kind (void) const +Client_Worker::kind () const { return ACE_TEXT ("Client"); } diff --git a/TAO/tests/ORB_Local_Config/Two_DLL_ORB/server.cpp b/TAO/tests/ORB_Local_Config/Two_DLL_ORB/server.cpp index e0fbd00ea37..a15a9fa9720 100644 --- a/TAO/tests/ORB_Local_Config/Two_DLL_ORB/server.cpp +++ b/TAO/tests/ORB_Local_Config/Two_DLL_ORB/server.cpp @@ -13,7 +13,7 @@ Server_Worker::Server_Worker () // const ACE_TCHAR * -Server_Worker::kind (void) const +Server_Worker::kind () const { return ACE_TEXT ("Server"); } |