diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-11-11 23:16:43 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-11-11 23:16:43 +0000 |
commit | 672d2c12550009d15900dd8d7569e6a6f830456c (patch) | |
tree | 1a83bb52432c25a83514e1b5122faea443c64d9d /lldb/source/Core/Broadcaster.cpp | |
parent | ba17b96bed2cb7e0b95e89372e520ab150259421 (diff) | |
download | bcm5719-llvm-672d2c12550009d15900dd8d7569e6a6f830456c.tar.gz bcm5719-llvm-672d2c12550009d15900dd8d7569e6a6f830456c.zip |
Remove comments after header includes.
This patch removes the comments following the header includes. They were
added after running IWYU over the LLDB codebase. However they add little
value, are often outdates and burdensome to maintain.
Differential revision: https://reviews.llvm.org/D54385
llvm-svn: 346625
Diffstat (limited to 'lldb/source/Core/Broadcaster.cpp')
-rw-r--r-- | lldb/source/Core/Broadcaster.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lldb/source/Core/Broadcaster.cpp b/lldb/source/Core/Broadcaster.cpp index 198434b46c2..d2eff1341ab 100644 --- a/lldb/source/Core/Broadcaster.cpp +++ b/lldb/source/Core/Broadcaster.cpp @@ -12,16 +12,16 @@ #include "lldb/Core/Event.h" #include "lldb/Core/Listener.h" #include "lldb/Utility/Log.h" -#include "lldb/Utility/Logging.h" // for GetLogIfAnyCategoriesSet, Get... -#include "lldb/Utility/Stream.h" // for Stream +#include "lldb/Utility/Logging.h" +#include "lldb/Utility/Stream.h" #include "lldb/Utility/StreamString.h" -#include <algorithm> // for find_if -#include <memory> // for make_shared -#include <type_traits> // for move +#include <algorithm> +#include <memory> +#include <type_traits> -#include <assert.h> // for assert -#include <stddef.h> // for size_t +#include <assert.h> +#include <stddef.h> using namespace lldb; using namespace lldb_private; |