summaryrefslogtreecommitdiff
path: root/TAO/examples/Load_Balancing
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-30 17:27:41 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-30 17:27:41 +0000
commit0e1120ca240f5352ba041b8fc1b1e1a57582e34f (patch)
tree2cbd0b6239ef2cd552889ed1c8b65c367fb37f71 /TAO/examples/Load_Balancing
parent7d062935d4d735a5aabe47565ca9cf1874106d84 (diff)
downloadATCD-0e1120ca240f5352ba041b8fc1b1e1a57582e34f.tar.gz
ChangeLogTag: Fri Mar 30 11:26:07 2001 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/examples/Load_Balancing')
-rw-r--r--TAO/examples/Load_Balancing/Identity_i.cpp3
-rw-r--r--TAO/examples/Load_Balancing/Load_Balancer_i.cpp3
2 files changed, 2 insertions, 4 deletions
diff --git a/TAO/examples/Load_Balancing/Identity_i.cpp b/TAO/examples/Load_Balancing/Identity_i.cpp
index 30ceeeac9ac..8bce7e80235 100644
--- a/TAO/examples/Load_Balancing/Identity_i.cpp
+++ b/TAO/examples/Load_Balancing/Identity_i.cpp
@@ -25,9 +25,8 @@ Identity_i::~Identity_i (void)
void
Identity_i::get_name (CORBA::String_out name,
- CORBA::Environment &ACE_TRY_ENV)
+ CORBA::Environment & /*ACE_TRY_ENV*/)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- ACE_UNUSED_ARG (ACE_TRY_ENV);
name = this->name_.in ();
}
diff --git a/TAO/examples/Load_Balancing/Load_Balancer_i.cpp b/TAO/examples/Load_Balancing/Load_Balancer_i.cpp
index 1a410e57228..8d3383703fd 100644
--- a/TAO/examples/Load_Balancing/Load_Balancer_i.cpp
+++ b/TAO/examples/Load_Balancing/Load_Balancer_i.cpp
@@ -214,10 +214,9 @@ Object_Group_i::~Object_Group_i (void)
}
char *
-Object_Group_i::id (CORBA::Environment &ACE_TRY_ENV)
+Object_Group_i::id (CORBA::Environment & /*ACE_TRY_ENV*/)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- ACE_UNUSED_ARG (ACE_TRY_ENV);
return CORBA::string_dup (id_.c_str ());
}