mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Remove redundant semicolons to fix -pedantic-errors build break with older Clangs.
llvm-svn: 164071
This commit is contained in:
parent
71a6ab5ec1
commit
f96c884c89
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user