Skip to content

Commit

Permalink
Fix 'virtual' is redundant since function is already declared as 'ove…
Browse files Browse the repository at this point in the history
…rride' warnings. 3 I missed
  • Loading branch information
billy1arm committed Aug 21, 2024
1 parent 06131b9 commit a5ee37e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/shared/Database/SqlPreparedStatement.h
Original file line number Diff line number Diff line change
Expand Up @@ -801,21 +801,21 @@ class SqlPlainPreparedStatement : public SqlPreparedStatement
*
* @return bool
*/
virtual bool prepare() override { return true; }
bool prepare() override { return true; }

/**
* @brief we should replace all '?' symbols with substrings with proper format
*
* @param holder
*/
virtual void bind(const SqlStmtParameters& holder) override;
void bind(const SqlStmtParameters& holder) override;

/**
* @brief
*
* @return bool
*/
virtual bool execute() override;
bool execute() override;

protected:
/**
Expand Down

0 comments on commit a5ee37e

Please sign in to comment.