diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-31 07:06:58 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-31 07:06:58 +0000 |
commit | 21438bb224b276a4c92fe7576fbdaac1a52cc05b (patch) | |
tree | 26e6baff33cd0dc62401edf16caf99c31b0881fe /ace/Containers.h | |
parent | 54da30b7a620ffb8b8d861a47647e18f3dd6702d (diff) | |
download | ATCD-21438bb224b276a4c92fe7576fbdaac1a52cc05b.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Containers.h')
-rw-r--r-- | ace/Containers.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/ace/Containers.h b/ace/Containers.h index 72ecf381c04..5a042a65488 100644 --- a/ace/Containers.h +++ b/ace/Containers.h @@ -181,15 +181,20 @@ class ACE_Node friend class ACE_Unbounded_Set_Iterator<T>; friend class ACE_Unbounded_Stack<T>; friend class ACE_Unbounded_Stack_Iterator<T>; + +public: + // This should really be private, but has to be publicly accessible + // for the ACE_HAS_HPUX_ACC_BROKEN_TEMPLATE_DESTRUCTOR fix. + + ~ACE_Node (void); + // This isn't necessary, but it keeps the compiler happy. + private: // = Initialization methods ACE_Node (const T &i, ACE_Node<T> *n); ACE_Node (ACE_Node<T> *n = 0, int MS_SUCKS = 0); ACE_Node (const ACE_Node<T> &n); - ~ACE_Node (void); - // This isn't necessary, but it keeps the compiler happy. - ACE_Node<T> *next_; // Pointer to next element in the list of <ACE_Node>s. |