From 9c35e10444b24848e0a909c46727ac2a312ab5de Mon Sep 17 00:00:00 2001 From: click Date: Sun, 19 Dec 2010 16:29:51 +0100 Subject: Core:DBLayer: Fix warning on GCC --HG-- branch : trunk --- src/server/shared/Database/MySQLConnection.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/server/shared/Database/MySQLConnection.cpp') diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp index de61153b125..32c2be5d2bf 100755 --- a/src/server/shared/Database/MySQLConnection.cpp +++ b/src/server/shared/Database/MySQLConnection.cpp @@ -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; } -} \ No newline at end of file +} -- cgit v1.2.3