Core:DBLayer: Fix warning on GCC

--HG--
branch : trunk
This commit is contained in:
click
2010-12-19 16:29:51 +01:00
parent dfd82c2fad
commit 9c35e10444

View File

@@ -33,19 +33,19 @@
#include "Log.h"
MySQLConnection::MySQLConnection(MySQLConnectionInfo& connInfo) :
m_reconnecting(false),
m_queue(NULL),
m_worker(NULL),
m_Mysql(NULL),
m_reconnecting(false),
m_connectionInfo(connInfo),
m_connectionFlags(CONNECTION_SYNCH)
{
}
MySQLConnection::MySQLConnection(ACE_Activation_Queue* queue, MySQLConnectionInfo& connInfo) :
m_reconnecting(false),
m_queue(queue),
m_Mysql(NULL),
m_reconnecting(false),
m_connectionInfo(connInfo),
m_connectionFlags(CONNECTION_ASYNC)
{
@@ -464,4 +464,4 @@ bool MySQLConnection::_HandleMySQLErrno(uint32 errNo)
sLog.outSQLDriver("Unhandled MySQL errno %u. Unexpected behaviour possible.", errNo);
return false;
}
}
}