diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/API/SBDebugger.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/API/SBDebugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp b/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp index f5e71d5..88c991b 100644 --- a/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp +++ b/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp @@ -480,7 +480,7 @@ SBDebugger::GetScriptingLanguage (const char *script_language_name) const char * SBDebugger::GetVersionString () { - return GetVersion(); + return lldb_private::GetVersion(); } const char * @@ -711,7 +711,7 @@ SBDebugger::GetIndexOfTarget (lldb::SBTarget target) } SBTarget -SBDebugger::FindTargetWithProcessID (pid_t pid) +SBDebugger::FindTargetWithProcessID (lldb::pid_t pid) { SBTarget sb_target; if (m_opaque_sp) |