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/Core/Communication.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/Core/Communication.cpp')
-rw-r--r-- | lldb/source/Core/Communication.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Communication.cpp b/lldb/source/Core/Communication.cpp index 3f678c45efe..afdabc0c7ce 100644 --- a/lldb/source/Core/Communication.cpp +++ b/lldb/source/Core/Communication.cpp @@ -9,12 +9,12 @@ #include "lldb/Core/Communication.h" -#include "lldb/Core/Event.h" -#include "lldb/Core/Listener.h" #include "lldb/Host/HostThread.h" #include "lldb/Host/ThreadLauncher.h" #include "lldb/Utility/Connection.h" #include "lldb/Utility/ConstString.h" +#include "lldb/Utility/Event.h" +#include "lldb/Utility/Listener.h" #include "lldb/Utility/Log.h" #include "lldb/Utility/Logging.h" #include "lldb/Utility/Status.h" |