summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-04-25 11:27:49 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-04-25 11:27:49 +0000
commitc767e27aa868e211ffcb6953784d561ac611a269 (patch)
tree0b948f50deaf2aa6a4dfb627966f33508cd6a304
parent781c3b979b229e48cff4375c0d28a2b3563ba011 (diff)
downloadATCD-c767e27aa868e211ffcb6953784d561ac611a269.tar.gz
ChangeLogTag:Fri Apr 25 06:27:06 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/tao/PortableServer/ObjectReferenceTemplate.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 875359ce4b8..e6b80614165 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Fri Apr 25 06:27:06 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * tao/PortableServer/ObjectReferenceTemplate.cpp: Fixed a compile
+ error in builds with no exceptions.
+
Thu Apr 24 22:01:42 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tao/CONV_FRAMEC.cpp:
diff --git a/TAO/tao/PortableServer/ObjectReferenceTemplate.cpp b/TAO/tao/PortableServer/ObjectReferenceTemplate.cpp
index c14ef7779dc..cc67d522861 100644
--- a/TAO/tao/PortableServer/ObjectReferenceTemplate.cpp
+++ b/TAO/tao/PortableServer/ObjectReferenceTemplate.cpp
@@ -94,5 +94,5 @@ TAO_ObjectReferenceTemplate::make_object (
if (this->poa_ == 0)
ACE_THROW_RETURN (CORBA::BAD_INV_ORDER (), CORBA::Object::_nil ());
- return this->poa_->invoke_key_to_object (ACE_ENV_ARG_PARAMETER);
+ return this->poa_->invoke_key_to_object (ACE_ENV_SINGLE_ARG_PARAMETER);
}