projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dda8c7d
)
Use std::unique_ptr instead of std::auto_ptr.
author
Greg Clayton
<gclayton@apple.com>
Thu, 11 Apr 2013 22:24:51 +0000
(22:24 +0000)
committer
Greg Clayton
<gclayton@apple.com>
Thu, 11 Apr 2013 22:24:51 +0000
(22:24 +0000)
llvm-svn: 179328
lldb/include/lldb/API/SBValueList.h
patch
|
blob
|
history
diff --git
a/lldb/include/lldb/API/SBValueList.h
b/lldb/include/lldb/API/SBValueList.h
index
4bf5967
..
503c799
100644
(file)
--- 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;
};