summaryrefslogtreecommitdiff
path: root/lldb/source/API/SBEvent.cpp
diff options
context:
space:
mode:
authorPavel Labath <pavel@labath.sk>2018-12-14 15:59:49 +0000
committerPavel Labath <pavel@labath.sk>2018-12-14 15:59:49 +0000
commit181b823b0478f92ae5fc4e022de18ce082f91bf0 (patch)
treef39c156d89b20ea73c9e9a756d98b91cfbd2446f /lldb/source/API/SBEvent.cpp
parent2ae9783b4fc7a7a716e4a21f85c304632b527b10 (diff)
Move Broadcaster+Listener+Event combo from Core into Utility
Summary: These are general purpose "utility" classes, whose functionality is not debugger-specific in any way. As such, I believe they belong in the Utility module. This doesn't break any particular dependency (yet), but it reduces the number of Core dependencies across the board. Reviewers: zturner, jingham, teemperor, clayborg Subscribers: mgorny, lldb-commits Differential Revision: https://reviews.llvm.org/D55361 llvm-svn: 349157
Diffstat (limited to 'lldb/source/API/SBEvent.cpp')
-rw-r--r--lldb/source/API/SBEvent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBEvent.cpp b/lldb/source/API/SBEvent.cpp
index 65eb71c09285..0556f50f6544 100644
--- a/lldb/source/API/SBEvent.cpp
+++ b/lldb/source/API/SBEvent.cpp
@@ -12,11 +12,11 @@
#include "lldb/API/SBStream.h"
#include "lldb/Breakpoint/Breakpoint.h"
-#include "lldb/Core/Event.h"
#include "lldb/Core/StreamFile.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Target/Process.h"
#include "lldb/Utility/ConstString.h"
+#include "lldb/Utility/Event.h"
#include "lldb/Utility/Stream.h"
using namespace lldb;