diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-23 08:05:03 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-23 08:05:03 +0000 |
commit | 31d9a45d1387a00a3c04c231d481e3af9a874ee7 (patch) | |
tree | f0131bd31b083c7c7a26da9fb807c6ed9e689859 /ace/Auto_Ptr.cpp | |
parent | bad20233663443a04c3a334ea5f1534b2e876bdc (diff) | |
download | ATCD-31d9a45d1387a00a3c04c231d481e3af9a874ee7.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Auto_Ptr.cpp')
-rw-r--r-- | ace/Auto_Ptr.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ace/Auto_Ptr.cpp b/ace/Auto_Ptr.cpp index 67bc370b505..f5a2103e17d 100644 --- a/ace/Auto_Ptr.cpp +++ b/ace/Auto_Ptr.cpp @@ -11,36 +11,36 @@ #include "ace/Auto_Ptr.i" #endif /* __ACE_INLINE__ */ -ACE_ALLOC_HOOK_DEFINE(auto_ptr) +ACE_ALLOC_HOOK_DEFINE(auto_basic_ptr) template<class X> void -auto_ptr<X>::dump (void) const +auto_basic_ptr<X>::dump (void) const { - ACE_TRACE ("auto_ptr<X>::dump"); + ACE_TRACE ("auto_basic_ptr<X>::dump"); } template<class X> void -auto_ptr<X>::remove (X *& x) +auto_basic_ptr<X>::remove (X *& x) { - ACE_TRACE ("auto_ptr<X>::remove"); + ACE_TRACE ("auto_basic_ptr<X>::remove"); X *tp = x; x = 0; delete tp; } -ACE_ALLOC_HOOK_DEFINE(auto_array_ptr) +ACE_ALLOC_HOOK_DEFINE(auto_basic_array_ptr) template<class X> void -auto_array_ptr<X>::dump (void) const +auto_basic_array_ptr<X>::dump (void) const { - ACE_TRACE ("auto_array_ptr<X>::dump"); + ACE_TRACE ("auto_basic_array_ptr<X>::dump"); } template<class X> void -auto_array_ptr<X>::remove (X *& x) +auto_basic_array_ptr<X>::remove (X *& x) { - ACE_TRACE ("auto_array_ptr<X>::remove"); + ACE_TRACE ("auto_basic_array_ptr<X>::remove"); X *tp = x; x = 0; |