summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.cpp4
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.cpp
index 3c1fdac6aa1..4d365eb44e1 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.cpp
@@ -14,7 +14,7 @@ namespace TAO
{
/*static*/ CORBA::Boolean
PG_Utils::set_tagged_component (
- PortableGroup::ObjectGroup *&ior,
+ PortableGroup::ObjectGroup *ior,
PortableGroup::TagGroupTaggedComponent &tg)
{
if (ior->_stubobj () == 0)
@@ -80,7 +80,7 @@ namespace TAO
/*static*/ CORBA::Boolean
PG_Utils::get_tagged_component (
- PortableGroup::ObjectGroup *&ior,
+ PortableGroup::ObjectGroup *ior,
PortableGroup::TagGroupTaggedComponent &tg)
{
if (ior->_stubobj () == 0)
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.h b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.h
index 40e9bcecfbd..8a948085fef 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.h
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.h
@@ -36,12 +36,12 @@ namespace TAO
/// Set tagged component for the object group
static CORBA::Boolean set_tagged_component (
- PortableGroup::ObjectGroup *&ior,
+ PortableGroup::ObjectGroup *ior,
PortableGroup::TagGroupTaggedComponent &t);
/// Get tagged component for the object group
static CORBA::Boolean get_tagged_component (
- PortableGroup::ObjectGroup *&ior,
+ PortableGroup::ObjectGroup *ior,
PortableGroup::TagGroupTaggedComponent &t);
private: