Add 'lldb_private' namespace where necessary to prevent ambiguity and

resulting infinite loops.

llvm-svn: 130159
This commit is contained in:
Caroline Tice 2011-04-25 22:05:51 +00:00
parent d369908dac
commit c2bbb49aff
1 changed files with 3 additions and 3 deletions

View File

@ -390,7 +390,7 @@ SBDebugger::GetVersionString ()
const char * const char *
SBDebugger::StateAsCString (StateType state) SBDebugger::StateAsCString (StateType state)
{ {
return StateAsCString (state); return lldb_private::StateAsCString (state);
} }
bool bool
@ -398,7 +398,7 @@ SBDebugger::StateIsRunningState (StateType state)
{ {
LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
const bool result = StateIsRunningState (state); const bool result = lldb_private::StateIsRunningState (state);
if (log) if (log)
log->Printf ("SBDebugger::StateIsRunningState (state=%s) => %i", log->Printf ("SBDebugger::StateIsRunningState (state=%s) => %i",
StateAsCString (state), result); StateAsCString (state), result);
@ -411,7 +411,7 @@ SBDebugger::StateIsStoppedState (StateType state)
{ {
LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
const bool result = StateIsStoppedState (state); const bool result = lldb_private::StateIsStoppedState (state);
if (log) if (log)
log->Printf ("SBDebugger::StateIsStoppedState (state=%s) => %i", log->Printf ("SBDebugger::StateIsStoppedState (state=%s) => %i",
StateAsCString (state), result); StateAsCString (state), result);