summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-05-03 03:40:02 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-05-03 03:40:02 +0000
commit4bab94a5eb9973e56d9ae1b8dad373ead85fe804 (patch)
treed8eb9fb7acb1ebb17deb9fdb0a7cff093965901e
parent1f86a59783900e181979e61b4e1012eabd0d7e10 (diff)
downloadATCD-4bab94a5eb9973e56d9ae1b8dad373ead85fe804.tar.gz
ChangeLogTag: Wed May 2 22:39:06 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a4
-rw-r--r--TAO/tao/ORB_Core.cpp6
2 files changed, 4 insertions, 6 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 43a445f9126..02dc9775c7b 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,7 @@
+Wed May 2 22:39:06 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/ORB_Core.cpp: Fixed a couple of unused variable warnings.
+
Wed May 2 20:26:56 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/GIOP_Message_Generator_Parser_12.cpp:
diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp
index 30443f78a64..a09bd913ae8 100644
--- a/TAO/tao/ORB_Core.cpp
+++ b/TAO/tao/ORB_Core.cpp
@@ -2556,7 +2556,6 @@ TAO_ORB_Core::output_cdr_buffer_allocator (void)
ACE_Data_Block*
TAO_ORB_Core::create_input_cdr_data_block (size_t size)
{
- ACE_Data_Block *nb = 0;
ACE_Allocator *dblock_allocator;
ACE_Allocator *buffer_allocator;
@@ -2599,15 +2598,10 @@ TAO_ORB_Core::create_input_cdr_data_block (size_t size)
ACE_Data_Block *
TAO_ORB_Core::data_block_for_message_block (size_t size)
{
- ACE_Data_Block *nb = 0;
ACE_Allocator *dblock_allocator;
ACE_Allocator *buffer_allocator;
- /// @@ We are using the input CDR configurations for this. In a
- /// @@ generic sense we should be using dishing out datablocks to
- /// @@ the input and output CDR folks. Will get to this when we have
- /// @@ time -- NB
dblock_allocator =
this->message_block_dblock_allocator ();
buffer_allocator =