summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-11-12 20:33:52 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-11-12 20:33:52 +0000
commit22b6f0974bee2b0ffc4ec6c8f3755bf8a36134f1 (patch)
treedbb10fc6e11bc0fa137fcb3959434e8678ab20bb
parent384dab3ebf8d304edd33edf4584d73896678b907 (diff)
downloadATCD-22b6f0974bee2b0ffc4ec6c8f3755bf8a36134f1.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,