summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-08-12 05:30:36 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-08-12 05:30:36 +0000
commit8cd2c92c6719ac0aca63e627b4e49e6c78d70716 (patch)
treeaacf9d35b6d6dfdbb25f7c29117802fd339980b8
parente5ee79147d3fe11cc80b4525b7df28369592444c (diff)
downloadATCD-8cd2c92c6719ac0aca63e627b4e49e6c78d70716.tar.gz
ChangeLogTag: Sun Aug 12 00:29:27 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a4
-rw-r--r--TAO/tests/Native_Exceptions/test_i.cpp2
2 files changed, 6 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 28db2b9a30c..f4cd838d2af 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,7 @@
+Sun Aug 12 00:29:27 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Native_Exceptions/test_i.cpp: Fixed warning with g++.
+
Sat Aug 11 17:02:44 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/GIOP_Message_Base.cpp:
diff --git a/TAO/tests/Native_Exceptions/test_i.cpp b/TAO/tests/Native_Exceptions/test_i.cpp
index 62d188ff01f..2b0df042b9c 100644
--- a/TAO/tests/Native_Exceptions/test_i.cpp
+++ b/TAO/tests/Native_Exceptions/test_i.cpp
@@ -24,6 +24,8 @@ Simple_Server_i::test_raise (CORBA::Long x)
# if defined (WIN32) || defined (__HP_aCC)
// Make HP-UX's aCC happy
return x;
+#else /*WIN32 & HP */
+ ACE_UNUSED_ARG (x);
#endif /*WIN32 & HP */
}