Remove extra ';'
authorDevang Patel <dpatel@apple.com>
Wed, 9 Nov 2011 06:20:49 +0000 (06:20 +0000)
committerDevang Patel <dpatel@apple.com>
Wed, 9 Nov 2011 06:20:49 +0000 (06:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144172 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfAccelTable.h

index a0f64f040b4defab1b60afa617e9cfbcf87b9d02..0c1e949c7f2e2dbefa1ff80d6b1f299f61e85ad8 100644 (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) {