diff options
author | Caroline Tice <ctice@apple.com> | 2011-04-25 22:05:51 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2011-04-25 22:05:51 +0000 |
commit | c2bbb49affcda2664a71afe8559e8cdbc7bd8faf (patch) | |
tree | 3918575e788df4ac3c595682a027db41f60231d4 /lldb/source/API/SBDebugger.cpp | |
parent | d369908dace1e5e9e2ab66bd500f1ecb6f2d98f9 (diff) | |
download | bcm5719-llvm-c2bbb49affcda2664a71afe8559e8cdbc7bd8faf.tar.gz bcm5719-llvm-c2bbb49affcda2664a71afe8559e8cdbc7bd8faf.zip |
Add 'lldb_private' namespace where necessary to prevent ambiguity and
resulting infinite loops.
llvm-svn: 130159
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r-- | lldb/source/API/SBDebugger.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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); |