[Lldb-commits] [lldb] r196625 - Replace the last auto_ptr by unique_ptr
Jean-Daniel Dupas
devlists at shadowlab.org
Fri Dec 6 15:38:06 PST 2013
Author: jddupas
Date: Fri Dec 6 17:38:05 2013
New Revision: 196625
URL: http://llvm.org/viewvc/llvm-project?rev=196625&view=rev
Log:
Replace the last auto_ptr by unique_ptr
Modified:
lldb/trunk/source/Plugins/Platform/POSIX/PlatformPOSIX.h
Modified: lldb/trunk/source/Plugins/Platform/POSIX/PlatformPOSIX.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/POSIX/PlatformPOSIX.h?rev=196625&r1=196624&r2=196625&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/POSIX/PlatformPOSIX.h (original)
+++ lldb/trunk/source/Plugins/Platform/POSIX/PlatformPOSIX.h Fri Dec 6 17:38:05 2013
@@ -112,7 +112,7 @@ public:
uint64_t &high);
protected:
- std::auto_ptr<lldb_private::OptionGroupOptions> m_options;
+ std::unique_ptr<lldb_private::OptionGroupOptions> m_options;
lldb::PlatformSP m_remote_platform_sp; // Allow multiple ways to connect to a remote POSIX-compliant OS
More information about the lldb-commits
mailing list