Address further review feedback. (NFC)
authorAdrian Prantl <aprantl@apple.com>
Thu, 28 Sep 2017 18:31:51 +0000 (18:31 +0000)
committerAdrian Prantl <aprantl@apple.com>
Thu, 28 Sep 2017 18:31:51 +0000 (18:31 +0000)
llvm-svn: 314443

llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h

index 387dd7c..e8abd31 100644 (file)
@@ -66,14 +66,14 @@ public:
     /// Construct a new iterator for the entries at \p DataOffset.
     ValueIterator(const DWARFAcceleratorTable &AccelTable, unsigned DataOffset);
     /// End marker.
-    ValueIterator() : NumData(0) {}
+    ValueIterator() = default;
 
     const ArrayRef<DWARFFormValue> operator*() const {
       return AtomForms;
     }
     ValueIterator &operator++() { Next(); return *this; }
     ValueIterator operator++(int) {
-      ValueIterator I(*this);
+      ValueIterator I = *this;
       Next();
       return I;
     }