diff options
| author | Jean-Daniel Dupas <devlists@shadowlab.org> | 2013-12-06 23:38:05 +0000 |
|---|---|---|
| committer | Jean-Daniel Dupas <devlists@shadowlab.org> | 2013-12-06 23:38:05 +0000 |
| commit | 870c011de56b372f88cae8511a1bcd09d3e56c01 (patch) | |
| tree | feedf5e687946d3555d69637b29f764fe6ac0e62 | |
| parent | c061cceed2a76e1d3a9a3ea8ad184f637ea797cf (diff) | |
| download | bcm5719-llvm-870c011de56b372f88cae8511a1bcd09d3e56c01.tar.gz bcm5719-llvm-870c011de56b372f88cae8511a1bcd09d3e56c01.zip | |
Replace the last auto_ptr by unique_ptr
llvm-svn: 196625
| -rw-r--r-- | lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h b/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h index 336e0f90fca..1838965c02a 100644 --- a/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h +++ b/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h @@ -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 |

