Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 102b2c2

Browse files
author
Greg Clayton
committedApr 18, 2013
After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@179805 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 0f0551e commit 102b2c2

File tree

162 files changed

+432
-465
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+432
-465
lines changed
 

‎include/lldb/API/SBAddress.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class SBAddress
141141

142142
private:
143143

144-
STD_UNIQUE_PTR(lldb_private::Address) m_opaque_ap;
144+
std::unique_ptr<lldb_private::Address> m_opaque_ap;
145145
};
146146

147147

‎include/lldb/API/SBCommandReturnObject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class SBCommandReturnObject
118118
SetLLDBObjectPtr (lldb_private::CommandReturnObject *ptr);
119119

120120
private:
121-
STD_UNIQUE_PTR(lldb_private::CommandReturnObject) m_opaque_ap;
121+
std::unique_ptr<lldb_private::CommandReturnObject> m_opaque_ap;
122122
};
123123

124124
} // namespace lldb

0 commit comments

Comments
 (0)
This repository has been archived.