Changeset 11071 for code/trunk/src/external/tinyxml/ticpp.cpp
- Timestamp:
- Jan 17, 2016, 10:29:21 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/external/tinyxml/ticpp.cpp
r8351 r11071 717 717 } 718 718 719 std:: auto_ptr< Node > Node::Clone() const719 std::unique_ptr< Node > Node::Clone() const 720 720 { 721 721 TiXmlNode* node = GetTiXmlPointer()->Clone(); … … 724 724 TICPPTHROW( "Node could not be cloned" ); 725 725 } 726 std:: auto_ptr< Node > temp( NodeFactory( node, false, false ) );726 std::unique_ptr< Node > temp( NodeFactory( node, false, false ) ); 727 727 728 728 // Take ownership of the memory from TiXml
Note: See TracChangeset
for help on using the changeset viewer.