aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-07-16 15:03:23 +0000
committerDouglas Gregor <dgregor@apple.com>2010-07-16 15:03:23 +0000
commit1461520f8cba8ebbdfd832d5396079888f1ab96e (patch)
tree214cc530c391e3c2ba23ea3a706acec201e6e3b6
parent3df1d5c4088870d5c3da4def5dcab488dae7d427 (diff)
downloadexternal_llvm-1461520f8cba8ebbdfd832d5396079888f1ab96e.zip
external_llvm-1461520f8cba8ebbdfd832d5396079888f1ab96e.tar.gz
external_llvm-1461520f8cba8ebbdfd832d5396079888f1ab96e.tar.bz2
Remove extraneous semicolons after member functions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108525 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/ELF.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/ELF.h b/include/llvm/Support/ELF.h
index 93180b8..070c04d 100644
--- a/include/llvm/Support/ELF.h
+++ b/include/llvm/Support/ELF.h
@@ -365,7 +365,7 @@ struct Elf32_Rel {
void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); }
void setSymbolAndType(Elf32_Word s, unsigned char t) {
r_info = (s << 8) + t;
- };
+ }
};
// Relocation entry with explicit addend.
@@ -382,7 +382,7 @@ struct Elf32_Rela {
void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); }
void setSymbolAndType(Elf32_Word s, unsigned char t) {
r_info = (s << 8) + t;
- };
+ }
};
// Relocation entry, without explicit addend.
@@ -400,7 +400,7 @@ struct Elf64_Rel {
void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); }
void setSymbolAndType(Elf64_Xword s, unsigned char t) {
r_info = (s << 32) + (t&0xffffffffL);
- };
+ }
};
// Relocation entry with explicit addend.
@@ -419,7 +419,7 @@ struct Elf64_Rela {
void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); }
void setSymbolAndType(Elf64_Xword s, unsigned char t) {
r_info = (s << 32) + (t&0xffffffffL);
- };
+ }
};
// Program header for ELF32.