After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11.
llvm-svn: 179805
This commit is contained in:
@@ -83,7 +83,7 @@ protected:
|
||||
|
||||
private:
|
||||
// This auto_pointer is made in the constructor and is always valid.
|
||||
mutable STD_UNIQUE_PTR(lldb_private::EvaluateExpressionOptions) m_opaque_ap;
|
||||
mutable std::unique_ptr<lldb_private::EvaluateExpressionOptions> m_opaque_ap;
|
||||
};
|
||||
|
||||
} // namespace lldb
|
||||
|
||||
@@ -122,7 +122,7 @@ public:
|
||||
|
||||
private:
|
||||
|
||||
STD_UNIQUE_PTR(lldb_private::SectionImpl) m_opaque_ap;
|
||||
std::unique_ptr<lldb_private::SectionImpl> m_opaque_ap;
|
||||
};
|
||||
|
||||
} // namespace lldb
|
||||
|
||||
@@ -65,7 +65,7 @@ public:
|
||||
%}
|
||||
|
||||
protected:
|
||||
STD_UNIQUE_PTR(lldb_private::TypeMemberImpl) m_opaque_ap;
|
||||
std::unique_ptr<lldb_private::TypeMemberImpl> m_opaque_ap;
|
||||
};
|
||||
|
||||
%feature("docstring",
|
||||
|
||||
Reference in New Issue
Block a user