From c2bbb49affcda2664a71afe8559e8cdbc7bd8faf Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Mon, 25 Apr 2011 22:05:51 +0000 Subject: Add 'lldb_private' namespace where necessary to prevent ambiguity and resulting infinite loops. llvm-svn: 130159 --- lldb/source/API/SBDebugger.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lldb/source/API/SBDebugger.cpp') diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index c08173f8b7a..700098e2f4e 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -390,7 +390,7 @@ SBDebugger::GetVersionString () const char * SBDebugger::StateAsCString (StateType state) { - return StateAsCString (state); + return lldb_private::StateAsCString (state); } bool @@ -398,7 +398,7 @@ SBDebugger::StateIsRunningState (StateType state) { 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 @@ SBDebugger::StateIsStoppedState (StateType state) { 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); -- cgit v1.2.3