diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-06-30 23:06:03 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-06-30 23:06:03 +0000 |
commit | 4fcfc19976c9abfb98008f67c973b99376580121 (patch) | |
tree | cfe96f93a661180764a7b0b658bbe6b277aefe7d /llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp | |
parent | 0c3d76179c78d455ad8855cdc0745ee6e1199a90 (diff) | |
download | bcm5719-llvm-4fcfc19976c9abfb98008f67c973b99376580121.tar.gz bcm5719-llvm-4fcfc19976c9abfb98008f67c973b99376580121.zip |
[CodeView, PDB] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 306911
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp b/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp index 434f775097e..eea70b229c6 100644 --- a/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp +++ b/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp @@ -1,4 +1,4 @@ -//===- DbiModuleList.cpp - PDB module information list ----------*- C++ -*-===// +//===- DbiModuleList.cpp - PDB module information list --------------------===// // // The LLVM Compiler Infrastructure // @@ -6,10 +6,17 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -#include "llvm/DebugInfo/PDB/Native/DbiModuleList.h" +#include "llvm/DebugInfo/PDB/Native/DbiModuleList.h" +#include "llvm/ADT/StringRef.h" +#include "llvm/ADT/iterator_range.h" #include "llvm/DebugInfo/PDB/Native/RawError.h" +#include "llvm/Support/BinaryStreamReader.h" #include "llvm/Support/Error.h" +#include <algorithm> +#include <cassert> +#include <cstddef> +#include <cstdint> using namespace llvm; using namespace llvm::pdb; |