diff options
author | Pavel Labath <pavel@labath.sk> | 2018-12-14 15:59:49 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2018-12-14 15:59:49 +0000 |
commit | 181b823b0478f92ae5fc4e022de18ce082f91bf0 (patch) | |
tree | f39c156d89b20ea73c9e9a756d98b91cfbd2446f /lldb/source/Target/TargetList.cpp | |
parent | 2ae9783b4fc7a7a716e4a21f85c304632b527b10 (diff) | |
download | bcm5719-llvm-181b823b0478f92ae5fc4e022de18ce082f91bf0.tar.gz bcm5719-llvm-181b823b0478f92ae5fc4e022de18ce082f91bf0.zip |
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/Target/TargetList.cpp')
-rw-r--r-- | lldb/source/Target/TargetList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/TargetList.cpp b/lldb/source/Target/TargetList.cpp index e4b46f6e29a..5c83dfbebe2 100644 --- a/lldb/source/Target/TargetList.cpp +++ b/lldb/source/Target/TargetList.cpp @@ -8,9 +8,7 @@ //===----------------------------------------------------------------------===// #include "lldb/Target/TargetList.h" -#include "lldb/Core/Broadcaster.h" #include "lldb/Core/Debugger.h" -#include "lldb/Core/Event.h" #include "lldb/Core/Module.h" #include "lldb/Core/ModuleSpec.h" #include "lldb/Host/Host.h" @@ -20,6 +18,8 @@ #include "lldb/Symbol/ObjectFile.h" #include "lldb/Target/Platform.h" #include "lldb/Target/Process.h" +#include "lldb/Utility/Broadcaster.h" +#include "lldb/Utility/Event.h" #include "lldb/Utility/State.h" #include "lldb/Utility/TildeExpressionResolver.h" #include "lldb/Utility/Timer.h" |