mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 16:38:42 +01:00
Core: Fix couple of warnings
--HG-- branch : trunk
This commit is contained in:
@@ -33,17 +33,17 @@
|
||||
#include "Timer.h"
|
||||
|
||||
MySQLConnection::MySQLConnection(MySQLConnectionInfo& connInfo) :
|
||||
m_connectionInfo(connInfo),
|
||||
m_queue(NULL),
|
||||
m_worker(NULL),
|
||||
m_Mysql(NULL)
|
||||
m_Mysql(NULL),
|
||||
m_connectionInfo(connInfo)
|
||||
{
|
||||
}
|
||||
|
||||
MySQLConnection::MySQLConnection(ACE_Activation_Queue* queue, MySQLConnectionInfo& connInfo) :
|
||||
m_connectionInfo(connInfo),
|
||||
m_queue(queue),
|
||||
m_Mysql(NULL)
|
||||
m_Mysql(NULL),
|
||||
m_connectionInfo(connInfo)
|
||||
{
|
||||
m_worker = new DatabaseWorker(m_queue, this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user