From 6dd7893e8c7234d65cdc47e3f3ce251fdfb35768 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sat, 12 Oct 2013 21:29:16 +0000 Subject: yaml2coff/elf: Touchup for compatibility. * std::string::append(int, int) can be ambiguous. * std::vector<>::data() is a C++11 feature, use ArrayRef abstraction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192542 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/yaml2obj/yaml2coff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/yaml2obj/yaml2coff.cpp') diff --git a/tools/yaml2obj/yaml2coff.cpp b/tools/yaml2obj/yaml2coff.cpp index 11aae0e68b..c757eb64fb 100644 --- a/tools/yaml2obj/yaml2coff.cpp +++ b/tools/yaml2obj/yaml2coff.cpp @@ -32,7 +32,7 @@ struct COFFParser { COFFParser(COFFYAML::Object &Obj) : Obj(Obj) { // A COFF string table always starts with a 4 byte size field. Offsets into // it include this size, so allocate it now. - StringTable.append(4, 0); + StringTable.append(4, char(0)); } bool parseSections() { -- cgit v1.2.3