[Lldb-commits] [lldb] r179328 - Use std::unique_ptr instead of std::auto_ptr.

Greg Clayton gclayton at apple.com
Thu Apr 11 15:24:51 PDT 2013


Author: gclayton
Date: Thu Apr 11 17:24:51 2013
New Revision: 179328

URL: http://llvm.org/viewvc/llvm-project?rev=179328&view=rev
Log:
Use std::unique_ptr instead of std::auto_ptr.


Modified:
    lldb/trunk/include/lldb/API/SBValueList.h

Modified: lldb/trunk/include/lldb/API/SBValueList.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBValueList.h?rev=179328&r1=179327&r2=179328&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBValueList.h (original)
+++ lldb/trunk/include/lldb/API/SBValueList.h Thu Apr 11 17:24:51 2013
@@ -86,7 +86,7 @@ private:
     ValueListImpl &
     ref ();
     
-    std::auto_ptr<ValueListImpl> m_opaque_ap;
+    std::unique_ptr<ValueListImpl> m_opaque_ap;
 };
 
 





More information about the lldb-commits mailing list