[llvm] r231566 - Removing spurious semi-colons; NFC
Aaron Ballman
aaron at aaronballman.com
Sat Mar 7 07:10:32 PST 2015
Author: aaronballman
Date: Sat Mar 7 09:10:32 2015
New Revision: 231566
URL: http://llvm.org/viewvc/llvm-project?rev=231566&view=rev
Log:
Removing spurious semi-colons; NFC
Modified:
llvm/trunk/tools/dsymutil/DwarfLinker.cpp
Modified: llvm/trunk/tools/dsymutil/DwarfLinker.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/dsymutil/DwarfLinker.cpp?rev=231566&r1=231565&r2=231566&view=diff
==============================================================================
--- llvm/trunk/tools/dsymutil/DwarfLinker.cpp (original)
+++ llvm/trunk/tools/dsymutil/DwarfLinker.cpp Sat Mar 7 09:10:32 2015
@@ -209,7 +209,7 @@ uint32_t NonRelocatableStringpool::getSt
Last = &*It;
}
return It->getValue().first;
-};
+}
/// \brief Put \p S into the StringMap so that it gets permanent
/// storage, but do not actually link it in the chain of elements
@@ -219,7 +219,7 @@ StringRef NonRelocatableStringpool::inte
std::pair<uint32_t, StringMapEntryBase *> Entry(0, nullptr);
auto InsertResult = Strings.insert(std::make_pair(S, Entry));
return InsertResult.first->getKey();
-};
+}
/// \brief The Dwarf streaming logic
///
More information about the llvm-commits
mailing list