Function bitcode index in Value Symbol Table and lazy reading support
[oota-llvm.git] / include / llvm / Bitcode / BitCodes.h
index 3f7a77d592c8a550a0334946f82cad510a836ca7..96c420151858b374982f744887d6a276215220c5 100644 (file)
@@ -164,8 +164,8 @@ template <> struct isPodLike<BitCodeAbbrevOp> { static const bool value=true; };
 /// specialized format instead of the fully-general, fully-vbr, format.
 class BitCodeAbbrev : public RefCountedBase<BitCodeAbbrev> {
   SmallVector<BitCodeAbbrevOp, 32> OperandList;
-  ~BitCodeAbbrev() {}
   // Only RefCountedBase is allowed to delete.
+  ~BitCodeAbbrev() = default;
   friend class RefCountedBase<BitCodeAbbrev>;
 
 public: