summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Cleeland <chris.cleeland@gmail.com>1997-05-20 16:27:10 +0000
committerChris Cleeland <chris.cleeland@gmail.com>1997-05-20 16:27:10 +0000
commit2aa109351ab1b7358cddbdef781bf3cdc2ecceb5 (patch)
tree6fe629191183587c304195061a69f227d589654e
parent3292b8fe098c84fb96eb03afce01e9a3ebcacc2e (diff)
downloadATCD-2aa109351ab1b7358cddbdef781bf3cdc2ecceb5.tar.gz
More name incompatibilities that Sun's C++/G++ didn't catch!
-rw-r--r--TAO/IIOP/lib/optable.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/IIOP/lib/optable.cpp b/TAO/IIOP/lib/optable.cpp
index ce955fcb499..14ef15f9c1d 100644
--- a/TAO/IIOP/lib/optable.cpp
+++ b/TAO/IIOP/lib/optable.cpp
@@ -33,7 +33,7 @@ TAO_Dynamic_Hash_OpTable::find (const CORBA_String &opname,
TAO_Linear_OpTable::TAO_Linear_OpTable (CORBA_ULong size)
: next_ (0),
tablesize_ (size),
- tbl_ (new TAO_Linear_OpTable::Entry[size])
+ tbl_ (new TAO_Linear_OpTable_Entry[size])
{
}
@@ -78,13 +78,13 @@ TAO_Linear_OpTable::find (const CORBA_String &opname,
return -1; // not found
}
-TAO_Linear_OpTable::Entry::Entry (void)
+TAO_Linear_OpTable_Entry::TAO_Linear_OpTable_Entry (void)
{
this->opname = 0;
this->skel_ptr = 0;
}
-TAO_Linear_OpTable::Entry::~Entry (void)
+TAO_Linear_OpTable_Entry::~TAO_Linear_OpTable_Entry (void)
{
this->opname = 0;
this->skel_ptr = 0; // cannot delete this as we do not own it
@@ -94,7 +94,7 @@ TAO_Linear_OpTable::Entry::~Entry (void)
TAO_Active_Demux_OpTable::TAO_Active_Demux_OpTable (CORBA_ULong size)
: next_ (0),
tablesize_ (size),
- tbl_ (new TAO_Active_Demux_OpTable::Entry[size])
+ tbl_ (new TAO_Active_Demux_OpTable_Entry[size])
{
}
@@ -129,12 +129,12 @@ TAO_Active_Demux_OpTable::find (const CORBA_String &opname,
return 1;
}
-TAO_Active_Demux_OpTable::Entry::Entry (void)
+TAO_Active_Demux_OpTable_Entry::TAO_Active_Demux_OpTable_Entry (void)
{
this->skel_ptr = 0;
}
-TAO_Active_Demux_OpTable::Entry::~Entry (void)
+TAO_Active_Demux_OpTable_Entry::~TAO_Active_Demux_OpTable_Entry (void)
{
this->skel_ptr = 0; // cannot delete this as we do not own it
}