summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-11-12 20:33:52 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-11-12 20:33:52 +0000
commitbae8b890d40125a975937a8fcb46b9e40a08fd2c (patch)
treedbb10fc6e11bc0fa137fcb3959434e8678ab20bb
parentb133cf2c982c1f34f43f4b7e0500ced3cf814740 (diff)
downloadATCD-bae8b890d40125a975937a8fcb46b9e40a08fd2c.tar.gz
ChangeLogTag: Tue Nov 12 14:34:37 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog12
-rw-r--r--TAO/tao/IIOP_Connector.cpp4
-rw-r--r--TAO/tao/Strategies/SHMIOP_Connector.cpp1
-rw-r--r--TAO/tao/Strategies/UIOP_Connector.cpp1
4 files changed, 16 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 8111caeba7e..6855e62b2c1 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,6 +1,16 @@
+Tue Nov 12 14:34:37 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
+
+ * tao/IIOP_Connector.cpp:
+ * tao/Strategies/UIOP_Connector.cpp:
+ * tao/Strategies/SHMIOP_Connector.cpp:
+ * orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
+ * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp: Fixed unused
+ variable warnings in builds compiled with ACE_NDEBUG option
+ turned on. This makes the ACE_ASSERT dissappear.
+
Tue Nov 12 13:25:00 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
- * tao/LF_CH_Event.cpp: Fixed compile error in no inline builds.
+ * tao/LF_CH_Event.cpp: Fixed compile error in no inline builds.
Tue Nov 12 13:13:05 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
diff --git a/TAO/tao/IIOP_Connector.cpp b/TAO/tao/IIOP_Connector.cpp
index fdb1a8e32d5..7d963a2ed7d 100644
--- a/TAO/tao/IIOP_Connector.cpp
+++ b/TAO/tao/IIOP_Connector.cpp
@@ -197,7 +197,9 @@ TAO_IIOP_Connector::make_connection (TAO_GIOP_Invocation *invocation,
long refcount = svc_handler->decr_refcount ();
ACE_ASSERT (refcount >= 0);
-
+
+ ACE_UNUSED_ARG (refcount);
+
if (result == -1)
{
// Give users a clue to the problem.
diff --git a/TAO/tao/Strategies/SHMIOP_Connector.cpp b/TAO/tao/Strategies/SHMIOP_Connector.cpp
index 2f30ae2e693..02607719182 100644
--- a/TAO/tao/Strategies/SHMIOP_Connector.cpp
+++ b/TAO/tao/Strategies/SHMIOP_Connector.cpp
@@ -202,6 +202,7 @@ TAO_SHMIOP_Connector::make_connection (TAO_GIOP_Invocation *invocation,
long refcount = svc_handler->decr_refcount ();
ACE_ASSERT (refcount >= 0);
+ ACE_UNUSED_ARG (refcount);
// = We dont do a wait since we know that we are doing a blocking
// connect
diff --git a/TAO/tao/Strategies/UIOP_Connector.cpp b/TAO/tao/Strategies/UIOP_Connector.cpp
index 540f8941d08..93cc8e548d1 100644
--- a/TAO/tao/Strategies/UIOP_Connector.cpp
+++ b/TAO/tao/Strategies/UIOP_Connector.cpp
@@ -194,6 +194,7 @@ TAO_UIOP_Connector::make_connection (TAO_GIOP_Invocation *invocation,
long refcount = svc_handler->decr_refcount ();
ACE_ASSERT (refcount >= 0);
+ ACE_UNUSED_ARG (refcount);
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,