From: Aaron Ballman Date: Sat, 7 Mar 2015 15:10:32 +0000 (+0000) Subject: Removing spurious semi-colons; NFC X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1e0774077e4037f7413dde959f8eaa7fc5ae9e4e;p=oota-llvm.git Removing spurious semi-colons; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231566 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/dsymutil/DwarfLinker.cpp b/tools/dsymutil/DwarfLinker.cpp index 4d84b986073..3d16d195bf5 100644 --- a/tools/dsymutil/DwarfLinker.cpp +++ b/tools/dsymutil/DwarfLinker.cpp @@ -209,7 +209,7 @@ uint32_t NonRelocatableStringpool::getStringOffset(StringRef S) { 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::internString(StringRef S) { std::pair Entry(0, nullptr); auto InsertResult = Strings.insert(std::make_pair(S, Entry)); return InsertResult.first->getKey(); -}; +} /// \brief The Dwarf streaming logic ///