diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-06-23 21:57:40 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-06-23 21:57:40 +0000 |
commit | 2db0cfa61702552722720e822a9f8b564c6c5dad (patch) | |
tree | da5f52da94156c5674007e22f01a28509173ac07 /llvm/lib/DebugInfo/MSF/MSFCommon.cpp | |
parent | eabde9306da067d5d5c67f82b5618034a329a34e (diff) | |
download | bcm5719-llvm-2db0cfa61702552722720e822a9f8b564c6c5dad.tar.gz bcm5719-llvm-2db0cfa61702552722720e822a9f8b564c6c5dad.zip |
[DebugInfo] Fix some Clang-tidy modernize-use-using and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 306169
Diffstat (limited to 'llvm/lib/DebugInfo/MSF/MSFCommon.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/MSF/MSFCommon.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/MSF/MSFCommon.cpp b/llvm/lib/DebugInfo/MSF/MSFCommon.cpp index fdab7884646..1facf5efb4b 100644 --- a/llvm/lib/DebugInfo/MSF/MSFCommon.cpp +++ b/llvm/lib/DebugInfo/MSF/MSFCommon.cpp @@ -1,4 +1,4 @@ -//===- MSFCommon.cpp - Common types and functions for MSF files -*- C++ -*-===// +//===- MSFCommon.cpp - Common types and functions for MSF files -----------===// // // The LLVM Compiler Infrastructure // @@ -9,6 +9,10 @@ #include "llvm/DebugInfo/MSF/MSFCommon.h" #include "llvm/DebugInfo/MSF/MSFError.h" +#include "llvm/Support/Endian.h" +#include "llvm/Support/Error.h" +#include <cstdint> +#include <cstring> using namespace llvm; using namespace llvm::msf; |