aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/MySQLConnection.cpp
diff options
context:
space:
mode:
authorclick <none@none>2010-12-19 16:29:51 +0100
committerclick <none@none>2010-12-19 16:29:51 +0100
commit9c35e10444b24848e0a909c46727ac2a312ab5de (patch)
tree18058fff92192742e0faf438a32297f81d3c34a0 /src/server/shared/Database/MySQLConnection.cpp
parentdfd82c2faddd00384000d96590fad07957ea6b31 (diff)
Core:DBLayer: Fix warning on GCC
--HG-- branch : trunk
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.cpp')
-rwxr-xr-xsrc/server/shared/Database/MySQLConnection.cpp6
1 files changed, 3 insertions, 3 deletions
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
+}