diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-04-21 17:14:10 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-04-21 17:14:10 +0000 |
commit | 1a299eab32acd4858e8651550b185be0767f7c70 (patch) | |
tree | 744abfe6f95b2fa52adcdce9006c83963eb01411 /lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp | |
parent | 58f02d0644a924d594045e0cfcaa4bfd40d620aa (diff) | |
download | bcm5719-llvm-1a299eab32acd4858e8651550b185be0767f7c70.tar.gz bcm5719-llvm-1a299eab32acd4858e8651550b185be0767f7c70.zip |
Fix Clang-tidy misc-unused-using-decls and Include What You Use warnings.
Differential revision: http://reviews.llvm.org/D19348
llvm-svn: 267008
Diffstat (limited to 'lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp')
-rw-r--r-- | lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp b/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp index 277627e1e6c..a3c445a9361 100644 --- a/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp +++ b/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp @@ -9,11 +9,17 @@ #include "gtest/gtest.h" #include "../../lib/ReaderWriter/MachO/MachONormalizedFile.h" +#include "lld/ReaderWriter/MachOLinkingContext.h" +#include "llvm/ADT/StringRef.h" +#include "llvm/Support/Error.h" #include "llvm/Support/MachO.h" +#include "llvm/Support/MemoryBuffer.h" +#include "llvm/Support/YAMLTraits.h" +#include <cstdint> +#include <memory> using llvm::StringRef; using llvm::MemoryBuffer; -using llvm::ErrorOr; using namespace lld::mach_o::normalized; using namespace llvm::MachO; |