summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-04-28 03:16:42 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-04-28 03:16:42 +0000
commit4ce085347bee61d1a6b4e0aff665dc85baffcc5a (patch)
tree32b91cd835886f89d007808b94b29833c83d31d3
parenta1329b27a637156372816dc197a03f9df2242bb7 (diff)
downloadATCD-4ce085347bee61d1a6b4e0aff665dc85baffcc5a.tar.gz
ChangeLogTag: Fri Apr 27 22:15:21 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a5
-rw-r--r--TAO/tests/POA/Etherealization/Etherealization.cpp4
2 files changed, 7 insertions, 2 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 5f7b33a2cdd..49f64361585 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Fri Apr 27 22:15:21 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/POA/Etherealization/Etherealization.cpp: Fixed a couple of
+ compiler warnings.
+
Fri Apr 27 14:34:59 2001 Ossama Othman <ossama@uci.edu>
* tao/Exception.cpp (_tao_get_omg_exception_description):
diff --git a/TAO/tests/POA/Etherealization/Etherealization.cpp b/TAO/tests/POA/Etherealization/Etherealization.cpp
index 408373a4deb..f7f173311e0 100644
--- a/TAO/tests/POA/Etherealization/Etherealization.cpp
+++ b/TAO/tests/POA/Etherealization/Etherealization.cpp
@@ -22,7 +22,7 @@
class test_i : public POA_test
{
public:
- void method (CORBA::Environment &ACE_TRY_ENV)
+ void method (CORBA::Environment & /*ACE_TRY_ENV*/)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
@@ -37,7 +37,7 @@ class test_i_with_reference_counting : public virtual PortableServer::RefCountSe
public virtual POA_test
{
public:
- void method (CORBA::Environment &ACE_TRY_ENV)
+ void method (CORBA::Environment &)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}