From: David Blaikie Date: Wed, 23 Apr 2014 19:44:08 +0000 (+0000) Subject: clang-format r207010 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=53008d6713038ad133c05bc6cf5ab63880795cea;p=oota-llvm.git clang-format r207010 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207016 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DwarfFile.cpp b/lib/CodeGen/AsmPrinter/DwarfFile.cpp index 04b4b94b262..1174d121072 100644 --- a/lib/CodeGen/AsmPrinter/DwarfFile.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfFile.cpp @@ -21,8 +21,7 @@ namespace llvm { DwarfFile::DwarfFile(AsmPrinter *AP, const char *Pref, BumpPtrAllocator &DA) : Asm(AP), StringPool(DA), NextStringPoolNumber(0), StringPref(Pref) {} -DwarfFile::~DwarfFile() { -} +DwarfFile::~DwarfFile() {} MCSymbol *DwarfFile::getStringPoolSym() { return Asm->GetTempSymbol(StringPref); @@ -192,7 +191,7 @@ void DwarfFile::emitStrings(const MCSection *StrSection, // Get all of the string pool entries and put them in an array by their ID so // we can sort them. - SmallVector, 64 > Entries; + SmallVector, 64> Entries; for (const auto &I : StringPool) Entries.push_back(std::make_pair(I.second.second, &I));