diff options
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r-- | lldb/source/API/SBDebugger.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index 3fa44bb27ae..70ca8b286db 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -128,6 +128,11 @@ SBDebugger::SBDebugger () : { } +SBDebugger::SBDebugger(const lldb::DebuggerSP &debugger_sp) : + m_opaque_sp(debugger_sp) +{ +} + SBDebugger::SBDebugger(const SBDebugger &rhs) : m_opaque_sp (rhs.m_opaque_sp) { |