Skip to content

Commit

Permalink
M #-: Fix no MySQL compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmontero committed Nov 26, 2019
1 parent fd27669 commit 23570ce
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/MySqlDB.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@ class MySqlDB : public SqlDB
{
public:

MySqlDB(
string server,
int port,
string user,
string password,
string database,
int connections)
MySqlDB(const string& _server,
int _port,
const string& _user,
const string& _password,
const string& _database,
const string& _encoding,
int _connections)
{
throw runtime_error("Aborting oned, MySQL support not compiled!");
};
Expand Down

0 comments on commit 23570ce

Please sign in to comment.