[lld] r284790 - Attempt to fix buildbots.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 20 15:29:22 PDT 2016
Author: ruiu
Date: Thu Oct 20 17:29:22 2016
New Revision: 284790
URL: http://llvm.org/viewvc/llvm-project?rev=284790&view=rev
Log:
Attempt to fix buildbots.
Modified:
lld/trunk/ELF/ELFCreator.h
Modified: lld/trunk/ELF/ELFCreator.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/ELFCreator.h?rev=284790&r1=284789&r2=284790&view=diff
==============================================================================
--- lld/trunk/ELF/ELFCreator.h (original)
+++ lld/trunk/ELF/ELFCreator.h Thu Oct 20 17:29:22 2016
@@ -11,6 +11,8 @@
#define LLD_ELF_ELF_CREATOR_H
#include "lld/Core/LLVM.h"
+#include <string>
+#include <vector>
namespace lld {
namespace elf {
@@ -18,7 +20,7 @@ namespace elf {
// Wraps a given binary blob with an ELF header so that the blob
// can be linked as an ELF file. Used for "--format binary".
template <class ELFT>
-std::vector<uint8_t> wrapBinaryWithElfHeader(ArrayRef<uint8_t> Data,
+std::vector<uint8_t> wrapBinaryWithElfHeader(llvm::ArrayRef<uint8_t> Data,
std::string Filename);
}
}
More information about the llvm-commits
mailing list