Skip to content

Commit

Permalink
MySQL: Fix compile warning about missing override
Browse files Browse the repository at this point in the history
  • Loading branch information
insunaa committed Jul 8, 2024
1 parent 156d40d commit 9e5e8a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/Database/DatabaseMysql.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class MySQLConnection : public SqlConnection
QueryNamedResult* QueryNamed(const char* sql) override;
bool Execute(const char* sql) override;

unsigned long escape_string(char* to, const char* from, unsigned long length);
unsigned long escape_string(char* to, const char* from, unsigned long length) override;

bool BeginTransaction() override;
bool CommitTransaction() override;
Expand Down

0 comments on commit 9e5e8a3

Please sign in to comment.