From 46beec06c8f86f7f84c5db5d7fae9efb44827c0f Mon Sep 17 00:00:00 2001 From: bala Date: Fri, 9 Jul 2010 02:23:30 +0000 Subject: Removed usage of ACE specific auto_ptr --- ACE/ace/Parse_Node.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ACE/ace/Parse_Node.h b/ACE/ace/Parse_Node.h index 1bbf8a347c3..cf30e2364be 100644 --- a/ACE/ace/Parse_Node.h +++ b/ACE/ace/Parse_Node.h @@ -224,7 +224,7 @@ public: private: /// Pointer to a descriptor that describes this node. - ACE_Auto_Ptr factory_; + std::auto_ptr factory_; private: ACE_UNIMPLEMENTED_FUNC (ACE_Dynamic_Node (const ACE_Dynamic_Node&)) @@ -510,7 +510,7 @@ private: private: ACE_TString name_; int type_; - ACE_Auto_Ptr location_; + std::auto_ptr location_; int is_active_; }; -- cgit v1.2.1