summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-03-14 19:45:49 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-03-14 19:45:49 +0000
commit16d5b613be869cb95be31d76adf79fad6780b508 (patch)
tree71a99ba07785e0f88bdfa3435881cefbce253bb1
parentbbb0584c7488b8694f9c5f06ffb4d4bb489585bc (diff)
downloadATCD-16d5b613be869cb95be31d76adf79fad6780b508.tar.gz
ChangeLogTag: Thu Mar 14 13:44:15 2002 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/docs/tutorials/Quoter/RT_Event_Service/Stock_i.cpp4
2 files changed, 10 insertions, 3 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 78977a866ab..5eeb6ba8664 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,12 @@
+Thu Mar 14 13:44:15 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ Committing this change for Yan Dai <dai_y@ociweb.com>.
+
+ * docs/tutorials/Quoter/RT_Event_Service/Stock_i.cpp:
+
+ Changed MyTieStock to be a friend of class Quoter_Stock_i instead
+ of the constructor to avoid a compilation error on AIX.
+
Thu Mar 14 09:26:54 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Makefile.CosNaming:
diff --git a/TAO/docs/tutorials/Quoter/RT_Event_Service/Stock_i.cpp b/TAO/docs/tutorials/Quoter/RT_Event_Service/Stock_i.cpp
index a8ca6402a64..ea37a47f82b 100644
--- a/TAO/docs/tutorials/Quoter/RT_Event_Service/Stock_i.cpp
+++ b/TAO/docs/tutorials/Quoter/RT_Event_Service/Stock_i.cpp
@@ -6,9 +6,7 @@
///derive a class from the tie template class to release itself by ref_count
class MyTieStock:public POA_RtecEventComm::PushSupplier_tie<Quoter_Stock_i>
{
- friend Quoter_Stock_i::Quoter_Stock_i (const char *symbol,
- const char *full_name,
- CORBA::Double price);
+ friend class Quoter_Stock_i;
ACE_Atomic_Op<TAO_SYNCH_MUTEX, long> ref_count_;
protected: