summaryrefslogtreecommitdiff
path: root/include/lldb/API/SBFileSpec.h
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2013-04-18 18:10:51 +0000
committerGreg Clayton <gclayton@apple.com>2013-04-18 18:10:51 +0000
commit81a96aa6242f7b559770f5dc62316253cb8cb0d4 (patch)
treef9dc72331bced3faee6bbfc55dc7ad18811972e3 /include/lldb/API/SBFileSpec.h
parent061ca65c4b666f8352ba08700ca4e5fa71ebb4a9 (diff)
Since we use C++11, we should switch over to using std::unique_ptr when C++11 is being used. To do this, we follow what we have done for shared pointers and we define a STD_UNIQUE_PTR macro that can be used and it will "do the right thing". Due to some API differences in std::unique_ptr and due to the fact that we need to be able to compile without C++11, we can't use move semantics so some code needed to change so that it can compile with either C++.
Anyone wanting to use a unique_ptr or auto_ptr should now use the "STD_UNIQUE_PTR(TYPE)" macro. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@179779 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/lldb/API/SBFileSpec.h')
-rw-r--r--include/lldb/API/SBFileSpec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lldb/API/SBFileSpec.h b/include/lldb/API/SBFileSpec.h
index ead27289c..1bcc93cfb 100644
--- a/include/lldb/API/SBFileSpec.h
+++ b/include/lldb/API/SBFileSpec.h
@@ -84,7 +84,7 @@ private:
const lldb_private::FileSpec &
ref() const;
- std::auto_ptr <lldb_private::FileSpec> m_opaque_ap;
+ STD_UNIQUE_PTR(lldb_private::FileSpec) m_opaque_ap;
};