summaryrefslogtreecommitdiff
path: root/include/lldb/Target/TargetList.h
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
commit6cf5d3636589c1804108eda6f1605266ad2627e7 (patch)
treec8749049b07edb0769c8933f2ba20438e480021b /include/lldb/Target/TargetList.h
parent5f70e33c83dc6ff835117271ccde1c6a53615a83 (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 git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@349157 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/lldb/Target/TargetList.h')
-rw-r--r--include/lldb/Target/TargetList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lldb/Target/TargetList.h b/include/lldb/Target/TargetList.h
index abfd16417..90c480745 100644
--- a/include/lldb/Target/TargetList.h
+++ b/include/lldb/Target/TargetList.h
@@ -13,8 +13,8 @@
#include <mutex>
#include <vector>
-#include "lldb/Core/Broadcaster.h"
#include "lldb/Target/Target.h"
+#include "lldb/Utility/Broadcaster.h"
namespace lldb_private {