diff options
author | Greg Clayton <gclayton@apple.com> | 2013-04-11 22:24:51 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-04-11 22:24:51 +0000 |
commit | 269c6e350742a3337de090fc6de444e69cdec444 (patch) | |
tree | 9b37d5af8440d897fb02078e573638eb040bffbb | |
parent | dda8c7d56f9f95b1ea54bf5c1f1ae761ab383298 (diff) | |
download | bcm5719-llvm-269c6e350742a3337de090fc6de444e69cdec444.tar.gz bcm5719-llvm-269c6e350742a3337de090fc6de444e69cdec444.zip |
Use std::unique_ptr instead of std::auto_ptr.
llvm-svn: 179328
-rw-r--r-- | lldb/include/lldb/API/SBValueList.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/include/lldb/API/SBValueList.h b/lldb/include/lldb/API/SBValueList.h index 4bf5967f5c6..503c7999f71 100644 --- a/lldb/include/lldb/API/SBValueList.h +++ b/lldb/include/lldb/API/SBValueList.h @@ -86,7 +86,7 @@ private: ValueListImpl & ref (); - std::auto_ptr<ValueListImpl> m_opaque_ap; + std::unique_ptr<ValueListImpl> m_opaque_ap; }; |