summaryrefslogtreecommitdiff
path: root/include/llvm/Object/ELF.h
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2012-09-17 22:52:05 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2012-09-17 22:52:05 +0000
commit419e5b9d4f8bd0e0724b7b2c2d8df0f534bc8d8d (patch)
treea19b56515d6c1e8e1f3a315b788fd8442faee4b7 /include/llvm/Object/ELF.h
parent89a4058da1055ef5985007dc41dcf69c0a510336 (diff)
downloadllvm-419e5b9d4f8bd0e0724b7b2c2d8df0f534bc8d8d.tar.gz
llvm-419e5b9d4f8bd0e0724b7b2c2d8df0f534bc8d8d.tar.bz2
llvm-419e5b9d4f8bd0e0724b7b2c2d8df0f534bc8d8d.tar.xz
Remove redundant semicolons to fix -pedantic-errors build break with older Clangs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Object/ELF.h')
-rw-r--r--include/llvm/Object/ELF.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h
index 759d63c1b4..03a1417bed 100644
--- a/include/llvm/Object/ELF.h
+++ b/include/llvm/Object/ELF.h
@@ -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;