diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-02-27 23:43:14 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-02-27 23:43:14 +0000 |
commit | e94042cafe2cd0b4821298c88a2265755bc0e0c9 (patch) | |
tree | 62eb41af2949139ae453b8affc31edd7b5d02343 /llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp | |
parent | eb0e7cb8dea82b8ab77972d5d3d17a40009d7b37 (diff) | |
download | bcm5719-llvm-e94042cafe2cd0b4821298c88a2265755bc0e0c9.tar.gz bcm5719-llvm-e94042cafe2cd0b4821298c88a2265755bc0e0c9.zip |
[DebugInfo] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 296413
Diffstat (limited to 'llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp index 67589cd01e5..ed5d726ae4e 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp @@ -1,4 +1,4 @@ -//===-- DWARFDebugArangeSet.cpp -------------------------------------------===// +//===- DWARFDebugArangeSet.cpp --------------------------------------------===// // // The LLVM Compiler Infrastructure // @@ -10,8 +10,11 @@ #include "llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" -#include <algorithm> #include <cassert> +#include <cinttypes> +#include <cstdint> +#include <cstring> + using namespace llvm; void DWARFDebugArangeSet::clear() { |