Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Backup.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Backup
Database& aSrcDatabase);

/// Release the SQLite Backup resource.
virtual ~Backup();
~Backup();

/**
* @brief Execute a step of backup with a given number of source pages to be copied
Expand Down
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Column.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Column
*/
Column(Statement::Ptr& aStmtPtr, int aIndex) noexcept; // nothrow
/// Simple destructor
virtual ~Column();
~Column();

// default copy constructor and assignment operator are perfectly suited :
// they copy the Statement::Ptr which in turn increments the reference counter.
Expand Down
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Database.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class Database
*
* @warning assert in case of error
*/
virtual ~Database();
~Database();

/**
* @brief Set a busy handler that sleeps for a specified amount of time when a table is locked.
Expand Down
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Statement.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Statement
Statement(Database& aDatabase, const std::string& aQuery);

/// Finalize and unregister the SQL query from the SQLite Database Connection.
virtual ~Statement();
~Statement();

/// Reset the statement to make it ready for a new execution.
void reset();
Expand Down
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Transaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Transaction
/**
* @brief Safely rollback the transaction if it has not been committed.
*/
virtual ~Transaction();
~Transaction();

/**
* @brief Commit the transaction.
Expand Down