summaryrefslogtreecommitdiffstats
path: root/lldb/source/API
diff options
context:
space:
mode:
authorIlia K <ki.stfu@gmail.com>2015-03-17 16:54:52 +0000
committerIlia K <ki.stfu@gmail.com>2015-03-17 16:54:52 +0000
commit8a00a562c5c93516ea2e1b45e7b37313a13ae0e5 (patch)
treeef0dc6bc2a84fddf3842abd2bc60d416335767ce /lldb/source/API
parentd58230b9dcb3b312a2da8f874daa0cc8dc27da9b (diff)
downloadbcm5719-llvm-8a00a562c5c93516ea2e1b45e7b37313a13ae0e5.tar.gz
bcm5719-llvm-8a00a562c5c93516ea2e1b45e7b37313a13ae0e5.zip
Fix broadcasters for interpreter and process:
# Fix CommandInterpreter.Broadcaster name (it should be the same as CommandInterpreter::GetStaticBroadcasterClass()) # Prevent the same error in Process.Broadcaster # Fix SBCommandInterpreter::GetBroadcasterClass (it should call CommandInterpreter::GetStaticBroadcasterClass(), was Communication::GetStaticBroadcasterClass()) llvm-svn: 232500
Diffstat (limited to 'lldb/source/API')
-rw-r--r--lldb/source/API/SBCommandInterpreter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/API/SBCommandInterpreter.cpp b/lldb/source/API/SBCommandInterpreter.cpp
index 36e02b7edf0..8a5896872ca 100644
--- a/lldb/source/API/SBCommandInterpreter.cpp
+++ b/lldb/source/API/SBCommandInterpreter.cpp
@@ -10,7 +10,6 @@
#include "lldb/lldb-python.h"
#include "lldb/lldb-types.h"
-#include "lldb/Core/Communication.h"
#include "lldb/Core/SourceManager.h"
#include "lldb/Core/Listener.h"
#include "lldb/Interpreter/CommandInterpreter.h"
@@ -533,7 +532,7 @@ SBCommandInterpreter::GetBroadcaster ()
const char *
SBCommandInterpreter::GetBroadcasterClass ()
{
- return Communication::GetStaticBroadcasterClass().AsCString();
+ return CommandInterpreter::GetStaticBroadcasterClass().AsCString();
}
const char *
OpenPOWER on IntegriCloud