Added copy constructors and assignment operators to all lldb::SB* classes
so we don't end up with weak exports with some compilers. llvm-svn: 118312
This commit is contained in:
@@ -63,6 +63,19 @@ SBFrame::SBFrame (const lldb::StackFrameSP &lldb_object_sp) :
|
||||
}
|
||||
}
|
||||
|
||||
SBFrame::SBFrame(const SBFrame &rhs) :
|
||||
m_opaque_sp (rhs.m_opaque_sp)
|
||||
{
|
||||
}
|
||||
|
||||
const SBFrame &
|
||||
SBFrame::operator = (const SBFrame &rhs)
|
||||
{
|
||||
if (this != &rhs)
|
||||
m_opaque_sp = rhs.m_opaque_sp;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SBFrame::~SBFrame()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user