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/DumpDataExtractor.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/DumpDataExtractor.cpp')
-rw-r--r-- | lldb/source/Core/DumpDataExtractor.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/lldb/source/Core/DumpDataExtractor.cpp b/lldb/source/Core/DumpDataExtractor.cpp index 049f4d3805a..43a026d0dcb 100644 --- a/lldb/source/Core/DumpDataExtractor.cpp +++ b/lldb/source/Core/DumpDataExtractor.cpp @@ -9,12 +9,12 @@ #include "lldb/Core/DumpDataExtractor.h" -#include "lldb/lldb-defines.h" // for LLDB_INVALID_ADDRESS -#include "lldb/lldb-forward.h" // for TargetSP, DisassemblerSP +#include "lldb/lldb-defines.h" +#include "lldb/lldb-forward.h" -#include "lldb/Core/Address.h" // for Address +#include "lldb/Core/Address.h" #include "lldb/Core/Disassembler.h" -#include "lldb/Core/ModuleList.h" // for ModuleList +#include "lldb/Core/ModuleList.h" #include "lldb/Symbol/ClangASTContext.h" #include "lldb/Target/ExecutionContext.h" #include "lldb/Target/ExecutionContextScope.h" @@ -23,22 +23,22 @@ #include "lldb/Utility/DataExtractor.h" #include "lldb/Utility/Stream.h" -#include "clang/AST/ASTContext.h" // for ASTContext -#include "clang/AST/CanonicalType.h" // for CanQualType +#include "clang/AST/ASTContext.h" +#include "clang/AST/CanonicalType.h" -#include "llvm/ADT/APFloat.h" // for APFloat, APFloatBase:... -#include "llvm/ADT/APInt.h" // for APInt -#include "llvm/ADT/ArrayRef.h" // for ArrayRef -#include "llvm/ADT/SmallVector.h" // for SmallVector +#include "llvm/ADT/APFloat.h" +#include "llvm/ADT/APInt.h" +#include "llvm/ADT/ArrayRef.h" +#include "llvm/ADT/SmallVector.h" -#include <limits> // for numeric_limits, numer... -#include <memory> // for shared_ptr -#include <string> // for string, basic_string +#include <limits> +#include <memory> +#include <string> -#include <assert.h> // for assert -#include <ctype.h> // for isprint -#include <inttypes.h> // for PRIu64, PRIx64, PRIX64 -#include <math.h> // for ldexpf +#include <assert.h> +#include <ctype.h> +#include <inttypes.h> +#include <math.h> #include <bitset> #include <sstream> |