Removing spurious semi-colons; NFC
authorAaron Ballman <aaron@aaronballman.com>
Sat, 7 Mar 2015 15:10:32 +0000 (15:10 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Sat, 7 Mar 2015 15:10:32 +0000 (15:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231566 91177308-0d34-0410-b5e6-96231b3b80d8

tools/dsymutil/DwarfLinker.cpp

index 4d84b9860732ace69bd733f54d4568ff3e5bfd24..3d16d195bf52e03eb8c708dbfc794f48477d38db 100644 (file)
@@ -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<uint32_t, StringMapEntryBase *> Entry(0, nullptr);
   auto InsertResult = Strings.insert(std::make_pair(S, Entry));
   return InsertResult.first->getKey();
-};
+}
 
 /// \brief The Dwarf streaming logic
 ///