diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-10 08:28:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 08:28:19 +0100 |
commit | c00ccad0dff58a535eb8e457220b5279acc8791d (patch) | |
tree | e6c7cac74238a53dfd7475180285fccb86cb63a4 /TAO/tao/PortableServer/POAManagerFactory.cpp | |
parent | 61cd647874bd1717fe2854421dce3d42fdb04c57 (diff) | |
parent | f08a54e04d9eb26b402076b961fb5122ec1bbc3d (diff) | |
download | ATCD-c00ccad0dff58a535eb8e457220b5279acc8791d.tar.gz |
Merge pull request #1341 from jwillemsen/jwi-pi-tests
Fixed some PI Server issues
Diffstat (limited to 'TAO/tao/PortableServer/POAManagerFactory.cpp')
-rw-r--r-- | TAO/tao/PortableServer/POAManagerFactory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/PortableServer/POAManagerFactory.cpp b/TAO/tao/PortableServer/POAManagerFactory.cpp index bc1b2cb69c7..afd7c87df6a 100644 --- a/TAO/tao/PortableServer/POAManagerFactory.cpp +++ b/TAO/tao/PortableServer/POAManagerFactory.cpp @@ -14,7 +14,7 @@ TAO_POAManager_Factory::TAO_POAManager_Factory (TAO_Object_Adapter &object_adapt { } -TAO_POAManager_Factory::~TAO_POAManager_Factory (void) +TAO_POAManager_Factory::~TAO_POAManager_Factory () { this->remove_all_poamanagers (); } @@ -74,7 +74,7 @@ TAO_POAManager_Factory::create_POAManager ( } ::PortableServer::POAManagerFactory::POAManagerSeq * -TAO_POAManager_Factory::list (void) +TAO_POAManager_Factory::list () { ::PortableServer::POAManagerFactory::POAManagerSeq_var poamanagers; CORBA::ULong number_of_poamanagers = static_cast <CORBA::ULong> @@ -122,7 +122,7 @@ TAO_POAManager_Factory::find (const char * id) } void -TAO_POAManager_Factory::remove_all_poamanagers (void) +TAO_POAManager_Factory::remove_all_poamanagers () { for (POAMANAGERSET::iterator iterator = this->poamanager_set_.begin (); iterator != this->poamanager_set_.end (); |