Skip to content

Commit

Permalink
Add virtual destructor to TransactionItem
Browse files Browse the repository at this point in the history
  • Loading branch information
inknos committed Mar 26, 2024
1 parent f2399ac commit 8e85574
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libdnf/transaction/TransactionItem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ class TransactionItem : public TransactionItemBase {
explicit TransactionItem(Transaction *trans);

TransactionItem(SQLite3Ptr conn, int64_t transID);
virtual ~TransactionItem() = default;

int64_t getId() const noexcept { return id; }
void setId(int64_t value) { id = value; }
Expand Down

0 comments on commit 8e85574

Please sign in to comment.