summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-08-03 11:56:13 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-08-03 11:56:13 +0200
commitbe42cde599da8bf0dd361f7e84bd055ead95582b (patch)
tree5d902157655b6ce50e96138effd9d48c18f06363
parentb6989e89d16542761cede30687d554801ea292e7 (diff)
downloadATCD-be42cde599da8bf0dd361f7e84bd055ead95582b.tar.gz
Fix problem with bcc32
* TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.cpp: * TAO/orbsvcs/orbsvcs/PortableGroup/PG_Utils.h:
-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: