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/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
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/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index a0c76c5dd90..14a5237e434 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -16,7 +16,6 @@ #include <string> #include <vector> -#include "lldb/Core/Broadcaster.h" #include "lldb/Core/LoadedModuleInfoList.h" #include "lldb/Core/ModuleSpec.h" #include "lldb/Core/ThreadSafeValue.h" @@ -24,6 +23,7 @@ #include "lldb/Target/Process.h" #include "lldb/Target/Thread.h" #include "lldb/Utility/ArchSpec.h" +#include "lldb/Utility/Broadcaster.h" #include "lldb/Utility/ConstString.h" #include "lldb/Utility/Status.h" #include "lldb/Utility/StreamGDBRemote.h" |