summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ACE/ace/Parse_Node.h4
1 files 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<const ACE_Service_Type_Factory> factory_;
+ std::auto_ptr<const ACE_Service_Type_Factory> 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<ACE_Location_Node> location_;
+ std::auto_ptr<ACE_Location_Node> location_;
int is_active_;
};