Remove extra ';'

llvm-svn: 144172
This commit is contained in:
Devang Patel 2011-11-09 06:20:49 +00:00
parent 21bfbf8d7c
commit fa4520968b
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ class DwarfAccelTable {
TableHeader (uint32_t data_len) :
magic (MagicHash), version (1), hash_function (eHashFunctionDJB),
bucket_count (0), hashes_count (0), header_data_len (data_len)
{};
{}
#ifndef NDEBUG
void print(raw_ostream &O) {
@ -140,7 +140,7 @@ public:
AtomType type; // enum AtomType
uint16_t form; // DWARF DW_FORM_ defines
Atom(AtomType type, uint16_t form) : type(type), form(form) {};
Atom(AtomType type, uint16_t form) : type(type), form(form) {}
static const char * AtomTypeString(enum AtomType);
#ifndef NDEBUG
void print(raw_ostream &O) {