[llvm-commits] [llvm] r108525 - /llvm/trunk/include/llvm/Support/ELF.h
Douglas Gregor
dgregor at apple.com
Fri Jul 16 08:03:23 PDT 2010
Author: dgregor
Date: Fri Jul 16 10:03:23 2010
New Revision: 108525
URL: http://llvm.org/viewvc/llvm-project?rev=108525&view=rev
Log:
Remove extraneous semicolons after member functions
Modified:
llvm/trunk/include/llvm/Support/ELF.h
Modified: llvm/trunk/include/llvm/Support/ELF.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/ELF.h?rev=108525&r1=108524&r2=108525&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/ELF.h (original)
+++ llvm/trunk/include/llvm/Support/ELF.h Fri Jul 16 10:03:23 2010
@@ -365,7 +365,7 @@
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 @@
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 @@
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 @@
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.
More information about the llvm-commits
mailing list