Add 'lldb_private' namespace where necessary to prevent ambiguity and
resulting infinite loops.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@130159 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBDebugger.cpp b/source/API/SBDebugger.cpp
index c08173f..700098e 100644
--- a/source/API/SBDebugger.cpp
+++ b/source/API/SBDebugger.cpp
@@ -390,7 +390,7 @@
const char *
SBDebugger::StateAsCString (StateType state)
{
- return StateAsCString (state);
+ return lldb_private::StateAsCString (state);
}
bool
@@ -398,7 +398,7 @@
{
LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
- const bool result = StateIsRunningState (state);
+ const bool result = lldb_private::StateIsRunningState (state);
if (log)
log->Printf ("SBDebugger::StateIsRunningState (state=%s) => %i",
StateAsCString (state), result);
@@ -411,7 +411,7 @@
{
LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
- const bool result = StateIsStoppedState (state);
+ const bool result = lldb_private::StateIsStoppedState (state);
if (log)
log->Printf ("SBDebugger::StateIsStoppedState (state=%s) => %i",
StateAsCString (state), result);