diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-16 00:48:14 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-16 00:48:14 +0000 |
commit | 8f50ba4dd8656f791cb69cdba6cf590d32e7c377 (patch) | |
tree | 3eb6aeb89a5eeb6eb050e4e11579526f5e5f0855 /ace/Auto_Ptr.cpp | |
parent | f4ad3a1836c8fd4058d104946e0f7b171681492f (diff) | |
download | ATCD-8f50ba4dd8656f791cb69cdba6cf590d32e7c377.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 f5a2103e17d..0f6461280c1 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_basic_ptr) +ACE_ALLOC_HOOK_DEFINE(ACE_Auto_Basic_Ptr) template<class X> void -auto_basic_ptr<X>::dump (void) const +ACE_Auto_Basic_Ptr<X>::dump (void) const { - ACE_TRACE ("auto_basic_ptr<X>::dump"); + ACE_TRACE ("ACE_Auto_Basic_Ptr<X>::dump"); } template<class X> void -auto_basic_ptr<X>::remove (X *& x) +ACE_Auto_Basic_Ptr<X>::remove (X *& x) { - ACE_TRACE ("auto_basic_ptr<X>::remove"); + ACE_TRACE ("ACE_Auto_Basic_Ptr<X>::remove"); X *tp = x; x = 0; delete tp; } -ACE_ALLOC_HOOK_DEFINE(auto_basic_array_ptr) +ACE_ALLOC_HOOK_DEFINE(ACE_Auto_Basic_Array_Ptr) template<class X> void -auto_basic_array_ptr<X>::dump (void) const +ACE_Auto_Basic_Array_Ptr<X>::dump (void) const { - ACE_TRACE ("auto_basic_array_ptr<X>::dump"); + ACE_TRACE ("ACE_Auto_Basic_Array_Ptr<X>::dump"); } template<class X> void -auto_basic_array_ptr<X>::remove (X *& x) +ACE_Auto_Basic_Array_Ptr<X>::remove (X *& x) { - ACE_TRACE ("auto_basic_array_ptr<X>::remove"); + ACE_TRACE ("ACE_Auto_Basic_Array_Ptr<X>::remove"); X *tp = x; x = 0; |