Remove redundant semicolons to fix -pedantic-errors build break with older Clangs.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 17 Sep 2012 22:52:05 +0000 (22:52 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 17 Sep 2012 22:52:05 +0000 (22:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164071 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Object/ELF.h

index 759d63c1b42cc38eb50e8cf11c4444986d2aa50c..03a1417bedfcaacc2753f24e1b1d11323b550a2d 100644 (file)
@@ -655,21 +655,21 @@ public:
 
   virtual Elf_Rela_Iter beginELFRela(const Elf_Shdr *sec) const {
     return Elf_Rela_Iter(sec, (const char *)(base() + sec->sh_offset));
-  };
+  }
 
   virtual Elf_Rela_Iter endELFRela(const Elf_Shdr *sec) const {
     return Elf_Rela_Iter(sec, (const char *)
                          (base() + sec->sh_offset + sec->sh_size));
-  };
+  }
 
   virtual Elf_Rel_Iter beginELFRel(const Elf_Shdr *sec) const {
     return Elf_Rel_Iter(sec, (const char *)(base() + sec->sh_offset));
-  };
+  }
 
   virtual Elf_Rel_Iter endELFRel(const Elf_Shdr *sec) const {
     return Elf_Rel_Iter(sec, (const char *)
                         (base() + sec->sh_offset + sec->sh_size));
-  };
+  }
 
   virtual uint8_t getBytesInAddress() const;
   virtual StringRef getFileFormatName() const;