summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2013-08-09 07:52:27 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2013-08-09 07:52:27 +0000
commit826d4f939ed0c4598d5dc3b9a9d539fdf4aa48c2 (patch)
tree7225cba9a8a64540fd01f35b48fa06800fb53d56 /TAO/orbsvcs/orbsvcs
parenta239a57d9a2e2c6ad2617bff469f4a629d7858a3 (diff)
downloadATCD-826d4f939ed0c4598d5dc3b9a9d539fdf4aa48c2.tar.gz
Fri Aug 9 07:52:26 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp: Removed const addition, only change I can see that is in the FT area
Diffstat (limited to 'TAO/orbsvcs/orbsvcs')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
index 0057b833d13..50e522047d9 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
@@ -867,7 +867,7 @@ TAO::PG_Object_Group::initial_populate (void)
if (this->get_membership_style () == PortableGroup::MEMB_INF_CTRL)
{
- PortableGroup::InitialNumberMembersValue const initial_number_members =
+ PortableGroup::InitialNumberMembersValue initial_number_members =
this->get_initial_number_members ();
if (this->members_.current_size () < initial_number_members)
@@ -884,7 +884,7 @@ TAO::PG_Object_Group::minimum_populate (void)
if ( this->get_membership_style () == PortableGroup::MEMB_INF_CTRL)
{
- PortableGroup::MinimumNumberMembersValue const minimum_number_members =
+ PortableGroup::MinimumNumberMembersValue minimum_number_members =
this->get_minimum_number_members ();
if (members_.current_size () < minimum_number_members)
{