commit | 3370f0ce9e2ae2fe1f2adf3628f443053602efa4 | [log] [tgz] |
---|---|---|
author | Enrico Granata <granata.enrico@gmail.com> | Fri Aug 19 23:56:34 2011 +0000 |
committer | Enrico Granata <granata.enrico@gmail.com> | Fri Aug 19 23:56:34 2011 +0000 |
tree | 55bcaf26d2ebcd616a9953c0f156a1e2792d1738 | |
parent | b3558281b767607590d56ae74d15c3cfa55819d9 [diff] |
Fixed some SWIG interoperability issues git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@138154 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBCommandInterpreter.cpp b/source/API/SBCommandInterpreter.cpp index b56ccb4..5b3371b 100644 --- a/source/API/SBCommandInterpreter.cpp +++ b/source/API/SBCommandInterpreter.cpp
@@ -344,7 +344,7 @@ lldb::DebuggerSP& debugger, const char* args, std::string& err_msg, - void* cmd_retobj + lldb_private::CommandReturnObject& cmd_retobj );
diff --git a/source/API/SBDebugger.cpp b/source/API/SBDebugger.cpp index 3fa44bb..70ca8b2 100644 --- a/source/API/SBDebugger.cpp +++ b/source/API/SBDebugger.cpp
@@ -128,6 +128,11 @@ { } +SBDebugger::SBDebugger(const lldb::DebuggerSP &debugger_sp) : + m_opaque_sp(debugger_sp) +{ +} + SBDebugger::SBDebugger(const SBDebugger &rhs) : m_opaque_sp (rhs.m_opaque_sp) {